diff options
author | Russel Winder <russel@winder.org.uk> | 2015-02-22 08:58:02 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2015-02-22 08:58:02 (GMT) |
commit | 6cc2280c4a929d906bf0e2db4d89cf5de224e55a (patch) | |
tree | 937db94a93841ee8cb4176f87b51c6de9bc895c4 | |
parent | 3c442e0a34b65c84a7efecb6c56976909ffde428 (diff) | |
download | SCons-6cc2280c4a929d906bf0e2db4d89cf5de224e55a.zip SCons-6cc2280c4a929d906bf0e2db4d89cf5de224e55a.tar.gz SCons-6cc2280c4a929d906bf0e2db4d89cf5de224e55a.tar.bz2 |
Putative fix for the ongoing D tool test fail on Debian 7 CI.
-rw-r--r-- | test/D/MixedDAndC/Common/common.py | 5 |
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() |