diff options
-rw-r--r-- | libraries/base/tests/Numeric/all.T | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libraries/base/tests/Numeric/all.T b/libraries/base/tests/Numeric/all.T index 36b2d6f0d6..a0a9d68382 100644 --- a/libraries/base/tests/Numeric/all.T +++ b/libraries/base/tests/Numeric/all.T @@ -6,6 +6,12 @@ test('num005', normal, compile_and_run, ['']) test('num006', normal, compile_and_run, ['']) test('num007', normal, compile_and_run, ['']) test('num008', normal, compile_and_run, ['']) + +# On i386, we need -msse2 to get reliable floating point results +if config.arch == 'i386': + opts = '-msse2' +else: + opts = '' test('num009', [ when(fast(), skip) , when(platform('i386-apple-darwin'), expect_broken(2370)) , when(opsys('mingw32'), omit_ways(['ghci'])) ], @@ -14,7 +20,7 @@ test('num009', [ when(fast(), skip) # serious, since the results for lower numbers are all fine. # We also get another set of results for 1e02 with GHCi, so # I'm skipping that way altogether. - compile_and_run, ['']) + compile_and_run, [opts]) test('num010', when(platform('i386-apple-darwin'), expect_broken_for(7043, 'ghci')), compile_and_run, |