summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/D/MixedDAndC/Common/common.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/D/MixedDAndC/Common/common.py b/test/D/MixedDAndC/Common/common.py
index 6c570f1..0a1c781 100644
--- a/test/D/MixedDAndC/Common/common.py
+++ b/test/D/MixedDAndC/Common/common.py
@@ -46,10 +46,11 @@ def testForTool(tool):
test.dir_fixture('Image')
- test.run()
-
if architecture()[0] == '32bit':
+ test.run(status=2)
test.fail_test('64-bit mode not compiled in' not in test.stderr())
+ else:
+ test.run()
test.pass_test()