fix inverted conditional

This commit is contained in:
Benjamin Sergeant 2019-05-13 17:18:07 -07:00
parent 9217b27d40
commit 7ccd9e1709

View File

@ -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: