summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2018-08-19 15:21:13 (GMT)
committerMats Wichmann <mats@linux.com>2020-05-01 14:31:57 (GMT)
commitb890f5fcdfc79795533cae7b7cd1bf05cb82c527 (patch)
tree0d540e996d5a73d674442612737addf8ae9ea123 /testing
parentdb16f4557b7c816cba466f2e009930017e4aac72 (diff)
downloadSCons-b890f5fcdfc79795533cae7b7cd1bf05cb82c527.zip
SCons-b890f5fcdfc79795533cae7b7cd1bf05cb82c527.tar.gz
SCons-b890f5fcdfc79795533cae7b7cd1bf05cb82c527.tar.bz2
Use uuid lib for Visual Studio guids
In the Visual Studio area, use uuid (Python standard library) to generate GUID identifiers instead of specifically using md5. Simplifies things as uuid lib can provide already formatted strings of the form that we need. This is split off from PR #3447 by request. Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'testing')
-rw-r--r--testing/framework/TestSConsMSVS.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/framework/TestSConsMSVS.py b/testing/framework/TestSConsMSVS.py
index 4b05ddd..4de3aaf 100644
--- a/testing/framework/TestSConsMSVS.py
+++ b/testing/framework/TestSConsMSVS.py
@@ -699,7 +699,7 @@ print("self._msvs_versions =%%s"%%str(SCons.Tool.MSCommon.query_versions()))
python = sys.executable
if project_guid is None:
- project_guid = "{E5466E26-0003-F18B-8F8A-BCD76C86388D}"
+ project_guid = "{B0CC4EE9-0174-51CD-A06A-41D0713E928A}"
if 'SCONS_LIB_DIR' in os.environ:
exec_script_main = "from os.path import join; import sys; sys.path = [ r'%s' ] + sys.path; import SCons.Script; SCons.Script.main()" % os.environ['SCONS_LIB_DIR']