summaryrefslogtreecommitdiff
path: root/test/D
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2015-02-22 08:58:02 +0000
committerRussel Winder <russel@winder.org.uk>2015-02-22 08:58:02 +0000
commit7b043ceaf7a5bd22c093d28d65d83085bc62b78f (patch)
tree937db94a93841ee8cb4176f87b51c6de9bc895c4 /test/D
parent30f887502e52b99c1434da3064fbdc8c412c3b28 (diff)
downloadscons-7b043ceaf7a5bd22c093d28d65d83085bc62b78f.tar.gz
Putative fix for the ongoing D tool test fail on Debian 7 CI.
Diffstat (limited to 'test/D')
-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 6c570f19..0a1c781d 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()