summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2014-12-22 17:17:08 (GMT)
committerRussel Winder <russel@winder.org.uk>2014-12-22 17:17:08 (GMT)
commit5e562898f16fba84d5aec291954479503da275a4 (patch)
tree02ea18b2d85b5f7f553fb0fbbb525a8a33abd4eb
parentd7715dc0190d7e1cf15907e47a0f71673c92bbce (diff)
downloadSCons-5e562898f16fba84d5aec291954479503da275a4.zip
SCons-5e562898f16fba84d5aec291954479503da275a4.tar.gz
SCons-5e562898f16fba84d5aec291954479503da275a4.tar.bz2
Putative fix for the CI problem perceived to be due to 32-bit platform.
-rw-r--r--test/D/MixedDAndC/Common/common.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/D/MixedDAndC/Common/common.py b/test/D/MixedDAndC/Common/common.py
index c9ecb6a..bd761d1 100644
--- a/test/D/MixedDAndC/Common/common.py
+++ b/test/D/MixedDAndC/Common/common.py
@@ -29,6 +29,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import TestSCons
+from os import uname
from os.path import abspath, dirname
import sys
@@ -47,6 +48,9 @@ def testForTool(tool):
test.run()
+ if uname()[4] not in ('x86_64',):
+ test.fail_test('64-bit mode not compiled in' not in test.stdout())
+
test.pass_test()
# Local Variables: