summaryrefslogtreecommitdiff
path: root/testsuite/tests/primops
diff options
context:
space:
mode:
authorÖmer Sinan Ağacan <omeragacan@gmail.com>2019-04-04 10:51:36 +0300
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-04-08 15:12:22 -0400
commit1085090e83bbf2a7dbb1b9a2e9023f3500538930 (patch)
tree41604ae56df74c43d360dabe2ab7b8d4ad623010 /testsuite/tests/primops
parentd236d9d0f4f3be0641933b959dde14a065acd37f (diff)
downloadhaskell-1085090e83bbf2a7dbb1b9a2e9023f3500538930.tar.gz
Skip test ArithInt16 and ArithWord16 in GHCi way
These tests use unboxed tuples, which GHCi doesn't support
Diffstat (limited to 'testsuite/tests/primops')
-rw-r--r--testsuite/tests/primops/should_run/all.T8
1 files changed, 5 insertions, 3 deletions
diff --git a/testsuite/tests/primops/should_run/all.T b/testsuite/tests/primops/should_run/all.T
index 0d6f869d11..e03cfd8a97 100644
--- a/testsuite/tests/primops/should_run/all.T
+++ b/testsuite/tests/primops/should_run/all.T
@@ -20,7 +20,9 @@ test('CmpInt8', normal, compile_and_run, [''])
test('CmpWord8', normal, compile_and_run, [''])
test('ShowPrim', normal, compile_and_run, [''])
-test('ArithInt16', normal, compile_and_run, [''])
-test('ArithWord16', normal, compile_and_run, [''])
+# These two tests use unboxed tuples, which GHCi doesn't support
+test('ArithInt16', omit_ways(['ghci']), compile_and_run, [''])
+test('ArithWord16', omit_ways(['ghci']), compile_and_run, [''])
+
test('CmpInt16', normal, compile_and_run, [''])
-test('CmpWord16', normal, compile_and_run, ['']) \ No newline at end of file
+test('CmpWord16', normal, compile_and_run, [''])