summaryrefslogtreecommitdiffstats
path: root/test/com
diff options
context:
space:
mode:
Diffstat (limited to 'test/com')
-rw-r--r--test/com/jogamp/opencl/CLCommandQueueTest.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/com/jogamp/opencl/CLCommandQueueTest.java b/test/com/jogamp/opencl/CLCommandQueueTest.java
index 0ea1cae4..9c4cc7a8 100644
--- a/test/com/jogamp/opencl/CLCommandQueueTest.java
+++ b/test/com/jogamp/opencl/CLCommandQueueTest.java
@@ -77,11 +77,15 @@ public class CLCommandQueueTest {
final CLEventList events = new CLEventList(2);
+ out.println(events);
+
assertEquals(0, events.size());
queue.putWriteBuffer(clBufferA, false, events) // write A
.putWriteBuffer(clBufferB, false, events);// write B
+ out.println(events);
+
assertEquals(2, events.size());
queue.putWaitForEvents(events, true);