X Tutup
Skip to content

Commit 9623d48

Browse files
committed
JavaCL: ignore broken overhead test
1 parent 6d971bb commit 9623d48

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Core/src/main/velocity/com/nativelibs4java/opencl/CLDevice.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ public boolean hasOutOfOrderQueueSupport() {
530530
try {
531531
queue = createOutOfOrderQueue(context);
532532
return true;
533-
} catch (CLException.InvalidQueueProperties ex) {
533+
} catch (CLException ex) {
534534
return false;
535535
} finally {
536536
if (queue != null)

Core/src/test/java/com/nativelibs4java/opencl/OverheadTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
import java.util.Map;
99
import static org.junit.Assert.*;
1010

11-
import org.junit.BeforeClass;
12-
import org.junit.Test;
11+
import org.junit.*;
1312

1413
import org.bridj.Pointer;
1514
import org.bridj.Platform;
@@ -25,6 +24,7 @@
2524
*
2625
* @author Kazo Csaba
2726
*/
27+
@Ignore
2828
@SuppressWarnings("unchecked")
2929
public class OverheadTest extends AbstractCommon {
3030
public OverheadTest(CLDevice device) {

0 commit comments

Comments
 (0)
X Tutup