summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-09-03 03:23:21 +0200
committerSven Gothel <[email protected]>2014-09-03 03:23:21 +0200
commit5003123575355ff088c7b2e4e9017056e9edbf5c (patch)
tree1e1dd727ccf89f29fbbc31bbc7b7c1a3eb738b7d
parentc720767642618cfb4f3739dc6962cde0465e25c5 (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.
-rw-r--r--test/com/jogamp/opencl/test/util/UITestCase.java2
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);