From 94b8854196d1bd6025bbdd8f62fcd948d752544e Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Tue, 28 Jul 2020 17:21:17 +0200 Subject: [PATCH] Correct VS compiler option in vmalloc test --- rtest/test_vmalloc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtest/test_vmalloc.py b/rtest/test_vmalloc.py index 86883d90f..f25134e8e 100644 --- a/rtest/test_vmalloc.py +++ b/rtest/test_vmalloc.py @@ -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]) -- 2.40.0