From 5920a520a01e8efb26d2fe3656fa55662493cab0 Mon Sep 17 00:00:00 2001 From: CoreRasurae <luis.p.mendes@gmail.com> Date: Tue, 24 Apr 2018 23:19:50 +0100 Subject: [PATCH] Fix: Signed integer constants were interpreted as unsigned for instruction SIPUSH (refs #78) - update with test --- src/test/java/com/aparapi/runtime/NegativeIntegerTest.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/test/java/com/aparapi/runtime/NegativeIntegerTest.java b/src/test/java/com/aparapi/runtime/NegativeIntegerTest.java index ee07714a..08004885 100644 --- a/src/test/java/com/aparapi/runtime/NegativeIntegerTest.java +++ b/src/test/java/com/aparapi/runtime/NegativeIntegerTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016 - 2017 Syncleus, Inc. + * Copyright (c) 2016 - 2018 Syncleus, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package com.aparapi.runtime; import static org.junit.Assert.assertEquals; @@ -59,7 +58,6 @@ public class NegativeIntegerTest openCLDevice = (OpenCLDevice) device; } - @Ignore("Test currently failing") @Test public void negativeIntegerTestPass() { -- GitLab