]> granicus.if.org Git - graphviz/commitdiff
Correct VS compiler option in vmalloc test
authorMagnus Jacobsson <magnus.jacobsson@berotec.se>
Tue, 28 Jul 2020 15:21:17 +0000 (17:21 +0200)
committerMagnus Jacobsson <magnus.jacobsson@berotec.se>
Thu, 30 Jul 2020 14:11:12 +0000 (16:11 +0200)
rtest/test_vmalloc.py

index 86883d90ff83205dceb1e922038bc0373a68664d..f25134e8e541a97c76e7c2d4e151694c9aac4894 100644 (file)
@@ -22,7 +22,7 @@ def test_vmalloc():
     # compile the unit tests
     dst = os.path.join(tmp, 'vmalloc-tests.exe')
     if platform.system() == 'Windows':
-      subprocess.check_call(['cl', '-nologo', src, '-Fe', dst])
+      subprocess.check_call(['cl', '-nologo', src, '-Fe:', dst])
     else:
       subprocess.check_call([os.environ.get('CC', 'cc'), '-Wall', '-Wextra',
         '-Werror', '-o', dst, src])