summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2014-12-22 17:17:08 +0000
committerRussel Winder <russel@winder.org.uk>2014-12-22 17:17:08 +0000
commit289db3e1c70591260d2673e693f5e27d27f67fce (patch)
tree02ea18b2d85b5f7f553fb0fbbb525a8a33abd4eb
parent7d9095eaf89bc5cfc0229859044eb2749e77d586 (diff)
downloadscons-289db3e1c70591260d2673e693f5e27d27f67fce.tar.gz
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 c9ecb6a6..bd761d10 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: