diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-09-03 08:46:01 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-09-03 08:46:01 -0700 |
commit | 929e7eebc6abb5763c775fc18c2b1da9d4da9f0b (patch) | |
tree | 550d3ea90387a3f3660283fa14a9c84473f9231a /tools/run_tests/run_tests.py | |
parent | fe06d409c572241de6c9f00077d6c8cf452f845c (diff) |
Fix typo
Diffstat (limited to 'tools/run_tests/run_tests.py')
-rwxr-xr-x | tools/run_tests/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 6e30a6d752..03a873c904 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -482,7 +482,7 @@ if platform.system() == 'Windows': # better do parallel compilation extra_args.extend(["/m"]) # disable PDB generation: it's broken, and we don't need it during CI - extra_args.extend(["/p:GenerateDebugInformation=false", "/p:DebugInformationFormat:None"]) + extra_args.extend(["/p:GenerateDebugInformation=false", "/p:DebugInformationFormat=None"]) return [ jobset.JobSpec(['vsprojects\\build.bat', 'vsprojects\\%s.sln' % target, |