diff options
author | Russel Winder <russel@winder.org.uk> | 2017-06-18 18:04:54 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2017-06-18 18:04:54 (GMT) |
commit | fda72fd3c1516012ff9d04fb260037fd1bc16abc (patch) | |
tree | 365c840b61eea1a2604e7f7cccdb73b481301c04 | |
parent | 037d67b78e83b123d6b010cfc6c0addb7d442a7b (diff) | |
download | SCons-fda72fd3c1516012ff9d04fb260037fd1bc16abc.zip SCons-fda72fd3c1516012ff9d04fb260037fd1bc16abc.tar.gz SCons-fda72fd3c1516012ff9d04fb260037fd1bc16abc.tar.bz2 |
Remove DMD from the tests on OSX till the correct rpath option is discovered.
-rw-r--r-- | test/D/Issues/2940_Ariovistus/Common/correctLinkOptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/D/Issues/2940_Ariovistus/Common/correctLinkOptions.py b/test/D/Issues/2940_Ariovistus/Common/correctLinkOptions.py index 2bcff1e..5acd26a 100644 --- a/test/D/Issues/2940_Ariovistus/Common/correctLinkOptions.py +++ b/test/D/Issues/2940_Ariovistus/Common/correctLinkOptions.py @@ -50,7 +50,7 @@ def testForTool(tool): libraryname = 'libstuff.so' filename = 'stuff.os' elif platform == 'darwin': - if tool == 'gdc': + if tool == 'dmd' or tool == 'gdc': test.skip_test('Dynamic libraries not yet supported by dmd and gdc on OSX.\n') libraryname = 'libstuff.dylib' filename = 'stuff.os' |