You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by bo...@apache.org on 2015/01/09 04:09:17 UTC

svn commit: r1650433 - /felix/trunk/framework/src/test/java/org/apache/felix/framework/util/manifestparser/NativeLibraryClauseTest.java

Author: bob
Date: Fri Jan  9 03:09:17 2015
New Revision: 1650433

URL: http://svn.apache.org/r1650433
Log:
FELIX-4690 Added test confirm Windows7 normalizes to windows7

Modified:
    felix/trunk/framework/src/test/java/org/apache/felix/framework/util/manifestparser/NativeLibraryClauseTest.java

Modified: felix/trunk/framework/src/test/java/org/apache/felix/framework/util/manifestparser/NativeLibraryClauseTest.java
URL: http://svn.apache.org/viewvc/felix/trunk/framework/src/test/java/org/apache/felix/framework/util/manifestparser/NativeLibraryClauseTest.java?rev=1650433&r1=1650432&r2=1650433&view=diff
==============================================================================
--- felix/trunk/framework/src/test/java/org/apache/felix/framework/util/manifestparser/NativeLibraryClauseTest.java (original)
+++ felix/trunk/framework/src/test/java/org/apache/felix/framework/util/manifestparser/NativeLibraryClauseTest.java Fri Jan  9 03:09:17 2015
@@ -96,6 +96,7 @@ public class NativeLibraryClauseTest ext
         assertTrue(NativeLibraryClause.getOsNameWithAliases("WinCE").contains("windowsce"));
         assertTrue(NativeLibraryClause.getOsNameWithAliases("WinVista").contains("windowsvista"));
         assertTrue(NativeLibraryClause.getOsNameWithAliases("Windows 7").contains("windows7"));
+        assertTrue(NativeLibraryClause.getOsNameWithAliases("Windows7").contains("windows7"));
         assertTrue(NativeLibraryClause.getOsNameWithAliases("Win8").contains("windows8"));
         assertTrue(NativeLibraryClause.getOsNameWithAliases("Linux1.2.3").contains("linux"));
         assertTrue(NativeLibraryClause.getOsNameWithAliases("AIX-4.5.6").contains("aix"));