diff options
author | Sven Gothel <[email protected]> | 2014-09-03 03:23:21 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-09-03 03:23:21 +0200 |
commit | 5003123575355ff088c7b2e4e9017056e9edbf5c (patch) | |
tree | 1e1dd727ccf89f29fbbc31bbc7b7c1a3eb738b7d /test/com/jogamp/opencl | |
parent | c720767642618cfb4f3739dc6962cde0465e25c5 (diff) |
Bug 978: UITestCase shall only report 'not available on this machine', due to commit c720767642618cfb4f3739dc6962cde0465e25c5v2.2.4v2.2.3v2.2.2v2.2.1b22x
Giving the OS type leads to misconception that is may not be available on all machines of this OS type.
Diffstat (limited to 'test/com/jogamp/opencl')
-rw-r--r-- | test/com/jogamp/opencl/test/util/UITestCase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/com/jogamp/opencl/test/util/UITestCase.java b/test/com/jogamp/opencl/test/util/UITestCase.java index c3c59f3b..d9abad43 100644 --- a/test/com/jogamp/opencl/test/util/UITestCase.java +++ b/test/com/jogamp/opencl/test/util/UITestCase.java @@ -131,7 +131,7 @@ public abstract class UITestCase { final boolean abortTest = isOpenCLUnavailable || !testSupported; if( abortTest ) { if( isOpenCLUnavailable ) { - System.err.print(" - CL not supported on "+Platform.getOSType()); + System.err.print(" - CL not supported on this machine"); } if( !testSupported ) { System.err.print(" - "+unsupportedTestMsg); |