From 5e562898f16fba84d5aec291954479503da275a4 Mon Sep 17 00:00:00 2001 From: Russel Winder Date: Mon, 22 Dec 2014 17:17:08 +0000 Subject: Putative fix for the CI problem perceived to be due to 32-bit platform. --- test/D/MixedDAndC/Common/common.py | 4 ++++ 1 file changed, 4 insertions(+) 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: -- cgit v0.12