summaryrefslogtreecommitdiffstats
path: root/testing/framework
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2021-02-12 22:28:53 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2021-04-13 20:56:49 (GMT)
commit046e37f25cd64f30e0fea7ac12bb59e89e390d31 (patch)
treee9344b11e6107ff9b1281fd2d13c36ec03807a4e /testing/framework
parentcd738f88e2cef1aac653226bce6860733b8fbb44 (diff)
downloadSCons-046e37f25cd64f30e0fea7ac12bb59e89e390d31.zip
SCons-046e37f25cd64f30e0fea7ac12bb59e89e390d31.tar.gz
SCons-046e37f25cd64f30e0fea7ac12bb59e89e390d31.tar.bz2
Fix ninja tool rules for macos/ar for static libs to skip response files for now. Also fix build_libraries to have proper shlib suffix
Diffstat (limited to 'testing/framework')
-rw-r--r--testing/framework/TestCmd.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/testing/framework/TestCmd.py b/testing/framework/TestCmd.py
index 333901c..903bee6 100644
--- a/testing/framework/TestCmd.py
+++ b/testing/framework/TestCmd.py
@@ -314,6 +314,7 @@ from subprocess import PIPE, STDOUT
IS_WINDOWS = sys.platform == 'win32'
+IS_MACOS = sys.platform == 'darwin'
IS_64_BIT = sys.maxsize > 2**32
IS_PYPY = hasattr(sys, 'pypy_translation_info')