summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-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: