diff options
author | Russel Winder <russel@winder.org.uk> | 2014-12-22 17:17:08 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2014-12-22 17:17:08 (GMT) |
commit | 5e562898f16fba84d5aec291954479503da275a4 (patch) | |
tree | 02ea18b2d85b5f7f553fb0fbbb525a8a33abd4eb /test | |
parent | d7715dc0190d7e1cf15907e47a0f71673c92bbce (diff) | |
download | SCons-5e562898f16fba84d5aec291954479503da275a4.zip SCons-5e562898f16fba84d5aec291954479503da275a4.tar.gz SCons-5e562898f16fba84d5aec291954479503da275a4.tar.bz2 |
Putative fix for the CI problem perceived to be due to 32-bit platform.
Diffstat (limited to 'test')
-rw-r--r-- | test/D/MixedDAndC/Common/common.py | 4 |
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: |