diff options
Diffstat (limited to 'testsuite/tests/numeric/should_run/all.T')
-rw-r--r-- | testsuite/tests/numeric/should_run/all.T | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/testsuite/tests/numeric/should_run/all.T b/testsuite/tests/numeric/should_run/all.T new file mode 100644 index 0000000000..0916af1d7d --- /dev/null +++ b/testsuite/tests/numeric/should_run/all.T @@ -0,0 +1,50 @@ +# Args to compile_and_run are: +# extra compile flags +# extra run flags +# expected process return value, if not zero + +test('arith001', normal, compile_and_run, ['']) +test('arith002', normal, compile_and_run, ['']) +test('arith003', normal, compile_and_run, ['']) +test('arith004', normal, compile_and_run, ['']) +test('arith005', normal, compile_and_run, ['']) +test('arith006', normal, compile_and_run, ['']) +test('arith007', normal, compile_and_run, ['']) + +# On i386, we need -msse2 to get reliable floating point results +ways = normal +opts = '' +if config.platform.startswith('i386-'): + if config.compiler_type == 'ghc' and \ + version_ge(config.compiler_version, '6.13'): + opts = '-msse2' + else: + ways = expect_fail_for(['optasm','threaded2','hpc','dyn','profasm']) + +test('arith008', ways, compile_and_run, [opts]) + +test('arith009', normal, compile_and_run, ['']) +test('arith010', normal, compile_and_run, ['']) +test('arith011', normal, compile_and_run, ['']) + +test('arith012', ways, compile_and_run, [opts]) + +test('arith013', compose(normal,only_compiler_types(['ghc'])), compile_and_run, ['']) +test('arith014', normal, compile_and_run, ['']) +test('arith015', normal, compile_and_run, ['']) +test('numrun009', normal, compile_and_run, ['']) +test('numrun010', normal, compile_and_run, ['']) +test('numrun011', normal, compile_and_run, ['']) +test('numrun012', normal, compile_and_run, ['']) +test('numrun013', normal, compile_and_run, ['']) +test('numrun014', normal, compile_and_run, ['']) +test('arith016', compose(normal,only_compiler_types(['ghc'])), compile_and_run, ['']) +test('arith017', normal, compile_and_run, ['']) +test('arith018', normal, compile_and_run, ['']) +test('arith019', normal, compile_and_run, ['']) +test('expfloat', normal, compile_and_run, ['']) + +test('1603', skip, compile_and_run, ['']) +test('3676', expect_broken(3676), compile_and_run, ['']) +test('4381', normal, compile_and_run, ['']) +test('4383', normal, compile_and_run, ['']) |