diff options
Diffstat (limited to 'src/junit')
-rw-r--r-- | src/junit/com/jogamp/common/nio/TestPointerBufferEndian.java | 7 | ||||
-rw-r--r-- | src/junit/com/jogamp/common/util/TestPlatform01.java | 19 |
2 files changed, 26 insertions, 0 deletions
diff --git a/src/junit/com/jogamp/common/nio/TestPointerBufferEndian.java b/src/junit/com/jogamp/common/nio/TestPointerBufferEndian.java index e587acf..43d6a61 100644 --- a/src/junit/com/jogamp/common/nio/TestPointerBufferEndian.java +++ b/src/junit/com/jogamp/common/nio/TestPointerBufferEndian.java @@ -1,6 +1,8 @@ package com.jogamp.common.nio; +import java.io.IOException; + import com.jogamp.common.os.*; import org.junit.Assert; @@ -43,4 +45,9 @@ public class TestPointerBufferEndian { public void testIndirect () { testImpl (false); } + + public static void main(String args[]) throws IOException { + String tstname = TestPointerBufferEndian.class.getName(); + org.junit.runner.JUnitCore.main(tstname); + } } diff --git a/src/junit/com/jogamp/common/util/TestPlatform01.java b/src/junit/com/jogamp/common/util/TestPlatform01.java index 1266c45..c10bf0b 100644 --- a/src/junit/com/jogamp/common/util/TestPlatform01.java +++ b/src/junit/com/jogamp/common/util/TestPlatform01.java @@ -37,6 +37,25 @@ import com.jogamp.common.os.Platform; public class TestPlatform01 { @Test + public void testInfo00() { + System.err.println(); + System.err.println(); + System.err.println("OS name/type: "+Platform.getOSName()+", "+Platform.getOSType()); + System.err.println("OS version: "+Platform.getOSVersion()+", "+Platform.getOSVersionNumber()); + System.err.println(); + System.err.println("Arch, CPU: "+Platform.getArchName()+", "+Platform.getCPUType()+"/"+Platform.getCPUFamily()); + System.err.println("OS/Arch: "+Platform.getOSAndArch()); + System.err.println(); + System.err.println("Java runtime: "+Platform.getJavaRuntimeName()); + System.err.println("Java vendor[name/url]: "+Platform.getJavaVendor()+"/"+Platform.getJavaVendorURL()); + System.err.println("Java version, vm: "+Platform.getJavaVersion()+", "+Platform.getJavaVMName()); + System.err.println(); + System.err.println("MD: "+Platform.getMachineDescription()); + System.err.println(); + System.err.println(); + } + + @Test public void testPageSize01() { final MachineDescription machine = Platform.getMachineDescription(); final int ps = machine.pageSizeInBytes(); |