summaryrefslogtreecommitdiffstats
path: root/test/com/jogamp/opencl
diff options
context:
space:
mode:
Diffstat (limited to 'test/com/jogamp/opencl')
-rw-r--r--test/com/jogamp/opencl/HighLevelBindingTest.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/com/jogamp/opencl/HighLevelBindingTest.java b/test/com/jogamp/opencl/HighLevelBindingTest.java
index 2e781ff5..449ccd7b 100644
--- a/test/com/jogamp/opencl/HighLevelBindingTest.java
+++ b/test/com/jogamp/opencl/HighLevelBindingTest.java
@@ -228,6 +228,11 @@ public class HighLevelBindingTest {
CLPlatform platform = CLPlatform.getDefault(version(CL_1_1), type(CPU));
+ if(platform == null) {
+ out.println("test aborted, no CPU for device fission found");
+ return;
+ }
+
CLDevice[] devices = platform.listCLDevices();
for (CLDevice device : devices) {