diff truffle/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/SLTckTest.java @ 22138:a583d7ffd285

Enhancing TCK to pass in all Java number types and see whether they result in something meaningful.
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 09 Sep 2015 18:53:14 +0200
parents e70b20f4bb00
children 597953a8e6f0
line wrap: on
line diff
--- a/truffle/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/SLTckTest.java	Wed Sep 09 16:03:49 2015 +0200
+++ b/truffle/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/SLTckTest.java	Wed Sep 09 18:53:14 2015 +0200
@@ -107,7 +107,7 @@
     }
 
     @Override
-    protected String plusInt() {
+    protected String plus(Class<?> type1, Class<?> type2) {
         return "plus";
     }
 
@@ -140,4 +140,16 @@
     protected String countInvocations() {
         return "count";
     }
+
+    //
+    // Ignore tests working on floats and double
+    //
+
+    @Override
+    public void testPlusWithDouble() throws Exception {
+    }
+
+    @Override
+    public void testPlusWithFloat() throws Exception {
+    }
 }