diff options
author | Adam Gross <grossag@vmware.com> | 2019-07-18 20:41:17 (GMT) |
---|---|---|
committer | Adam Gross <grossag@vmware.com> | 2019-07-18 20:41:17 (GMT) |
commit | 137d881becfe690a0a039fc7a3b15a9ecb20b8b7 (patch) | |
tree | d18ed31581fa0f052b420be34101803be0f53cb7 /testing | |
parent | b3dcc756c51b86220685acf88d4f5dea49af307f (diff) | |
download | SCons-137d881becfe690a0a039fc7a3b15a9ecb20b8b7.zip SCons-137d881becfe690a0a039fc7a3b15a9ecb20b8b7.tar.gz SCons-137d881becfe690a0a039fc7a3b15a9ecb20b8b7.tar.bz2 |
Fix accidental removal of some VS versions
My last change accidentally had several VS versions commented out in get_tested_proj_file_vc_versions().
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestSConsMSVS.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testing/framework/TestSConsMSVS.py b/testing/framework/TestSConsMSVS.py index 9e6e069..4b05ddd 100644 --- a/testing/framework/TestSConsMSVS.py +++ b/testing/framework/TestSConsMSVS.py @@ -638,8 +638,7 @@ def get_tested_proj_file_vc_versions(): """ Returns all MSVC versions that we want to test project file creation for. """ - #return ['8.0', '9.0', '10.0', '11.0', '12.0', '14.0', '14.1', '14.2'] - return ['9.0'] + return ['8.0', '9.0', '10.0', '11.0', '12.0', '14.0', '14.1', '14.2'] class TestSConsMSVS(TestSCons): |