summaryrefslogtreecommitdiffstats
path: root/test/com/jogamp/opencl
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2011-08-04 21:20:14 +0200
committerMichael Bien <[email protected]>2011-08-04 21:20:14 +0200
commitbdf1f6dbac967df81879d8730db1132fe184735a (patch)
treebc45f3dcb30b2a011f569060213148af528f4d78 /test/com/jogamp/opencl
parent0ee9b79f5941c5d418b8daa82783ed67fc3efeb4 (diff)
fixed another concurrent modification bug after testing on AMD, NV and Intel.
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) {