From 7cad8654e500af1f838299fc8a23be2993a746b3 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: