diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-01-18 01:05:30 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-01-18 16:43:28 +0000 |
commit | c0d723ec700a4211fb9ab4e8585dbc08a816611d (patch) | |
tree | b9019242ef087429dded22fb39a84dd78f51bb80 | |
parent | 946a2d1f3e4fb4d246b7939cb25897a18368c11d (diff) | |
download | haskell-c0d723ec700a4211fb9ab4e8585dbc08a816611d.tar.gz |
num010(ghci) is broken on OS X 32 (#7043)
-rw-r--r-- | libraries/base/tests/Numeric/all.T | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libraries/base/tests/Numeric/all.T b/libraries/base/tests/Numeric/all.T index 6b575db20d..1c8ef16fb0 100644 --- a/libraries/base/tests/Numeric/all.T +++ b/libraries/base/tests/Numeric/all.T @@ -15,4 +15,7 @@ test('num009', [ skip_if_fast # We also get another set of results for 1e02 with GHCi, so # I'm skipping that way altogether. compile_and_run, ['']) -test('num010', normal, compile_and_run, ['']) +test('num010', + if_platform('i386-apple-darwin', expect_broken_for(7043, 'ghci')), + compile_and_run, + ['']) |