summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-04-18 10:50:03 -0700
committerWilliam Deegan <bill@baddogconsulting.com>2017-04-18 10:50:03 -0700
commit0a59346b5443a5b93fa8ada59519de0ccf95081e (patch)
tree1bc957e438a9b0cd8ff85da2747b2af3ff8e409a
parent764801ecaf19fd73e75a90ba26452dd7c86a5138 (diff)
downloadscons-git-0a59346b5443a5b93fa8ada59519de0ccf95081e.tar.gz
osx: disable mixedDandC test until a good way to specify correct gcc is found
-rw-r--r--test/D/MixedDAndC/sconstest-dmd.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/D/MixedDAndC/sconstest-dmd.py b/test/D/MixedDAndC/sconstest-dmd.py
index df662556f..d96c5c30f 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')