diff options
author | Ian Lynagh <igloo@earth.li> | 2012-01-29 20:20:09 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-01-29 20:26:18 +0000 |
commit | c90ed070d949167f80c23370760aa26ba6abac67 (patch) | |
tree | 82e68dac79050d1dfd25c19da9f76bf62e32448b | |
parent | 2555da075782e0dca3054f277a87b098cff13ca4 (diff) | |
download | haskell-c90ed070d949167f80c23370760aa26ba6abac67.tar.gz |
objc-hi and objcpp-hi fail the ghci way
-rw-r--r-- | testsuite/tests/driver/objc/all.T | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/testsuite/tests/driver/objc/all.T b/testsuite/tests/driver/objc/all.T index eb472a41b9..68b76282ff 100644 --- a/testsuite/tests/driver/objc/all.T +++ b/testsuite/tests/driver/objc/all.T @@ -6,8 +6,14 @@ def if_not_platform(platforms, f): skip_if_not_osx = if_not_platform(['i386-apple-darwin','x86_64-apple-darwin'], skip) -test('objc-hi', [ skip_if_not_osx, objc_src ], +test('objc-hi', + [ skip_if_not_osx, + objc_src, + expect_fail_for(['ghci']) ], compile_and_run, ['-framework Foundation']) -test('objcpp-hi', [ skip_if_not_osx, objcpp_src ], +test('objcpp-hi', + [ skip_if_not_osx, + objcpp_src, + expect_fail_for(['ghci']) ], compile_and_run, ['-framework Foundation -lstdc++']) |