diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-04-18 17:50:03 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-04-18 17:50:03 (GMT) |
commit | 0a59346b5443a5b93fa8ada59519de0ccf95081e (patch) | |
tree | 1bc957e438a9b0cd8ff85da2747b2af3ff8e409a /test | |
parent | 764801ecaf19fd73e75a90ba26452dd7c86a5138 (diff) | |
download | SCons-0a59346b5443a5b93fa8ada59519de0ccf95081e.zip SCons-0a59346b5443a5b93fa8ada59519de0ccf95081e.tar.gz SCons-0a59346b5443a5b93fa8ada59519de0ccf95081e.tar.bz2 |
osx: disable mixedDandC test until a good way to specify correct gcc is found
Diffstat (limited to 'test')
-rw-r--r-- | test/D/MixedDAndC/sconstest-dmd.py | 10 |
1 files changed, 10 insertions, 0 deletions
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') |