From 5003123575355ff088c7b2e4e9017056e9edbf5c Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Wed, 3 Sep 2014 03:23:21 +0200 Subject: Bug 978: UITestCase shall only report 'not available on this machine', due to commit c720767642618cfb4f3739dc6962cde0465e25c5 Giving the OS type leads to misconception that is may not be available on all machines of this OS type. --- test/com/jogamp/opencl/test/util/UITestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3