diff options
author | Russel Winder <russel@winder.org.uk> | 2015-02-21 16:50:41 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2015-02-21 16:50:41 (GMT) |
commit | d5937ecd5ed42b159f0cdfbe7c0e0ce0bc1a984f (patch) | |
tree | 3078171027ff0aaef0e2d33f4a79f0f41ed82eef | |
parent | 7d4031dca4d8c9f73e59c8c0bcb165eb2f6248ba (diff) | |
download | SCons-d5937ecd5ed42b159f0cdfbe7c0e0ce0bc1a984f.zip SCons-d5937ecd5ed42b159f0cdfbe7c0e0ce0bc1a984f.tar.gz SCons-d5937ecd5ed42b159f0cdfbe7c0e0ce0bc1a984f.tar.bz2 |
Putative fix for the D/MixedDAndC test fail.
-rw-r--r-- | test/D/MixedDAndC/Common/common.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/D/MixedDAndC/Common/common.py b/test/D/MixedDAndC/Common/common.py index b356411..d78175d 100644 --- a/test/D/MixedDAndC/Common/common.py +++ b/test/D/MixedDAndC/Common/common.py @@ -48,8 +48,8 @@ def testForTool(tool): test.run() - if machine() in ('i386',): - test.fail_test('64-bit mode not compiled in' not in test.stdout()) + if machine() in ('i386', 'i486', 'i586', 'i686'): + test.fail_test('64-bit mode not compiled in' not in test.stderr()) test.pass_test() |