summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2021-01-13 15:28:03 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-01-22 15:01:24 -0500
commit2267d42a0bf50cb1bc3b5bb6660589eb05903c84 (patch)
tree8014be38ce70f52b80febf315f24f1c904809d74
parentc36a4f6389e5607b1608682c2fcdb0866cac31d0 (diff)
downloadhaskell-2267d42a0bf50cb1bc3b5bb6660589eb05903c84.tar.gz
Add 32-bit ops to T file I forgot to add before
-rw-r--r--testsuite/tests/primops/should_run/all.T15
1 files changed, 10 insertions, 5 deletions
diff --git a/testsuite/tests/primops/should_run/all.T b/testsuite/tests/primops/should_run/all.T
index b9e447bb1e..dbb82fd11e 100644
--- a/testsuite/tests/primops/should_run/all.T
+++ b/testsuite/tests/primops/should_run/all.T
@@ -14,19 +14,24 @@ test('T10678',
test('T11296', normal, compile_and_run, [''])
test('T13825-compile', normal, compile_and_run, [''])
test('T16164', normal, compile_and_run, [''])
-test('ArithInt8', omit_ways(['ghci']), compile_and_run, [''])
-test('ArithWord8', omit_ways(['ghci']), compile_and_run, [''])
-test('CmpInt8', normal, compile_and_run, [''])
-test('CmpWord8', normal, compile_and_run, [''])
test('ShowPrim', normal, compile_and_run, [''])
test('T12492', normal, compile_and_run, [''])
-# These two tests use unboxed tuples, which GHCi doesn't support
+# These tests use unboxed tuples, which GHCi doesn't support
+test('ArithInt8', omit_ways(['ghci']), compile_and_run, [''])
+test('ArithWord8', omit_ways(['ghci']), compile_and_run, [''])
test('ArithInt16', omit_ways(['ghci']), compile_and_run, [''])
test('ArithWord16', omit_ways(['ghci']), compile_and_run, [''])
+test('ArithInt32', omit_ways(['ghci']), compile_and_run, [''])
+test('ArithWord32', omit_ways(['ghci']), compile_and_run, [''])
+test('CmpInt8', normal, compile_and_run, [''])
+test('CmpWord8', normal, compile_and_run, [''])
test('CmpInt16', normal, compile_and_run, [''])
test('CmpWord16', normal, compile_and_run, [''])
+test('CmpInt32', normal, compile_and_run, [''])
+test('CmpWord32', normal, compile_and_run, [''])
+
test('ShrinkSmallMutableArrayA', normal, compile_and_run, [''])
test('ShrinkSmallMutableArrayB', normal, compile_and_run, [''])
test('T14664', normal, compile_and_run, [''])