You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/10/09 12:52:27 UTC

svn commit: r1395961 - /commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/SystemUtilsTest.java

Author: sebb
Date: Tue Oct  9 10:52:27 2012
New Revision: 1395961

URL: http://svn.apache.org/viewvc?rev=1395961&view=rev
Log:
Show what we could not test

Modified:
    commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/SystemUtilsTest.java

Modified: commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/SystemUtilsTest.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/SystemUtilsTest.java?rev=1395961&r1=1395960&r2=1395961&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/SystemUtilsTest.java (original)
+++ commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/SystemUtilsTest.java Tue Oct  9 10:52:27 2012
@@ -149,7 +149,7 @@ public class SystemUtilsTest {
             assertTrue(SystemUtils.IS_JAVA_1_6);
             assertFalse(SystemUtils.IS_JAVA_1_7);
         } else {
-            System.out.println("Can't test IS_JAVA value");
+            System.out.println("Can't test IS_JAVA value: "+javaVersion);
         }
     }
 
@@ -186,7 +186,7 @@ public class SystemUtilsTest {
             assertTrue(SystemUtils.IS_OS_UNIX);
             assertFalse(SystemUtils.IS_OS_WINDOWS);
         } else {
-            System.out.println("Can't test IS_OS value");
+            System.out.println("Can't test IS_OS value: "+osName);
         }
     }