From 0a59346b5443a5b93fa8ada59519de0ccf95081e Mon Sep 17 00:00:00 2001 From: William Deegan Date: Tue, 18 Apr 2017 10:50:03 -0700 Subject: osx: disable mixedDandC test until a good way to specify correct gcc is found --- test/D/MixedDAndC/sconstest-dmd.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/D/MixedDAndC/sconstest-dmd.py b/test/D/MixedDAndC/sconstest-dmd.py index df66255..d96c5c3 100644 --- a/test/D/MixedDAndC/sconstest-dmd.py +++ b/test/D/MixedDAndC/sconstest-dmd.py @@ -27,6 +27,16 @@ Test compiling and executing a project with a C module. __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" +import sys +if sys.platform == 'darwin': + import TestSCons + test = TestSCons.TestSCons() + + msg = "Skipping Mixed dmd test until a good way to ensure proper gcc is called." + "Calling default(system /usr/bin/gcc) gcc yields a surplus of linking errors\n" + test.skip_test(msg) + + from Common.common import testForTool testForTool('dmd') -- cgit v0.12