From d5937ecd5ed42b159f0cdfbe7c0e0ce0bc1a984f Mon Sep 17 00:00:00 2001 From: Russel Winder Date: Sat, 21 Feb 2015 16:50:41 +0000 Subject: Putative fix for the D/MixedDAndC test fail. --- test/D/MixedDAndC/Common/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/D/MixedDAndC/Common/common.py b/test/D/MixedDAndC/Common/common.py index b356411..d78175d 100644 --- a/test/D/MixedDAndC/Common/common.py +++ b/test/D/MixedDAndC/Common/common.py @@ -48,8 +48,8 @@ def testForTool(tool): test.run() - if machine() in ('i386',): - test.fail_test('64-bit mode not compiled in' not in test.stdout()) + if machine() in ('i386', 'i486', 'i586', 'i686'): + test.fail_test('64-bit mode not compiled in' not in test.stderr()) test.pass_test() -- cgit v0.12