diff truffle/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/SLTckTest.java @ 22495:aeba89e1d8da

Add ComplexNumber sequence tests
author Matthias Grimmer <grimmer@ssw.jku.at>
date Fri, 11 Dec 2015 15:20:27 +0100
parents fa7b15454c66
children 6ab540203853
line wrap: on
line diff
--- a/truffle/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/SLTckTest.java	Thu Dec 10 15:00:16 2015 +0100
+++ b/truffle/com.oracle.truffle.sl.test/src/com/oracle/truffle/sl/test/SLTckTest.java	Fri Dec 11 15:20:27 2015 +0100
@@ -44,8 +44,11 @@
 import com.oracle.truffle.api.vm.PolyglotEngine;
 import com.oracle.truffle.sl.test.instrument.InstrumentationTestMode;
 import com.oracle.truffle.tck.TruffleTCK;
+
 import org.junit.After;
+
 import static org.junit.Assert.assertTrue;
+
 import org.junit.Before;
 import org.junit.Test;
 
@@ -220,4 +223,32 @@
     public void testPrimitiveidentityFloat() throws Exception {
     }
 
+    @Override
+    public void testSumRealOfComplexNumbersA() throws Exception {
+    }
+
+    @Override
+    public void testSumRealOfComplexNumbersB() throws Exception {
+    }
+
+    @Override
+    public void testSumRealOfComplexNumbersAsStructuredDataColumnBased() throws Exception {
+    }
+
+    @Override
+    public void testSumRealOfComplexNumbersAsStructuredDataRowBased() throws Exception {
+    }
+
+    @Override
+    public void testCopyComplexNumbersA() throws Exception {
+    }
+
+    @Override
+    public void testCopyComplexNumbersB() throws Exception {
+    }
+
+    @Override
+    public void testCopyStructuredComplexToComplexNumbersA() throws Exception {
+    }
+
 }