summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2015-02-21 16:50:41 (GMT)
committerRussel Winder <russel@winder.org.uk>2015-02-21 16:50:41 (GMT)
commitd5937ecd5ed42b159f0cdfbe7c0e0ce0bc1a984f (patch)
tree3078171027ff0aaef0e2d33f4a79f0f41ed82eef
parent7d4031dca4d8c9f73e59c8c0bcb165eb2f6248ba (diff)
downloadSCons-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.py4
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()