aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-04-24 19:44:16 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2021-04-25 15:35:13 +0300
commit0e4c358f357e23ad4d2f86d6801da2648dbf8ec2 (patch)
tree550f62aca8e2be8c8d0c351d3b69deed2c1461d6 /run_tests.py
parent8f2155f4f70123f17ebe19daebd6faf9a385c36d (diff)
downloadmeson-0e4c358f357e23ad4d2f86d6801da2648dbf8ec2.zip
meson-0e4c358f357e23ad4d2f86d6801da2648dbf8ec2.tar.gz
meson-0e4c358f357e23ad4d2f86d6801da2648dbf8ec2.tar.bz2
Xcode: add objective C flags to plain C because Xcode requires it.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/run_tests.py b/run_tests.py
index 4d737ee..b2a25f0 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -225,9 +225,7 @@ def get_backend_commands(backend: Backend, debug: bool = False) -> \
test_cmd = cmd + ['RUN_TESTS.vcxproj']
elif backend is Backend.xcode:
cmd = ['xcodebuild']
- # In Xcode9 new build system's clean command fails when using a custom build directory.
- # Maybe use it when CI uses Xcode10 we can remove '-UseNewBuildSystem=FALSE'
- clean_cmd = cmd + ['-alltargets', 'clean', '-UseNewBuildSystem=FALSE']
+ clean_cmd = cmd + ['-alltargets', 'clean']
test_cmd = cmd + ['-target', 'RUN_TESTS']
elif backend is Backend.ninja:
global NINJA_CMD