From 7ccd9e1709a6f8a211842a7ce62c605ab4aea430 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Mon, 13 May 2019 17:18:07 -0700 Subject: [PATCH] fix inverted conditional --- test/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run.py b/test/run.py index 7a14eeca..9f789cae 100755 --- a/test/run.py +++ b/test/run.py @@ -352,7 +352,7 @@ def run(testName, buildDir, sanitizer, xmlOutput, testRunName, buildOnly, useLLD # gen build files with CMake runCMake(sanitizer, buildDir) - if platform.system() != 'Darwin': + if platform.system() == 'Darwin': # build with make runCommand('make -C {} -j8'.format(buildDir)) else: