summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJoseph Brill <48932340+jcbrill@users.noreply.github.com>2024-10-13 00:29:57 (GMT)
committerJoseph Brill <48932340+jcbrill@users.noreply.github.com>2024-10-13 00:29:57 (GMT)
commitd536184b92cfc5047cd4781eeb75c636292f453a (patch)
tree1dc2668a98a82258a945ac25749d4003cc09a9cc /test
parentdc9673c41f68d2c86e8c2af2e9e55ff39b230d5e (diff)
downloadSCons-d536184b92cfc5047cd4781eeb75c636292f453a.zip
SCons-d536184b92cfc5047cd4781eeb75c636292f453a.tar.gz
SCons-d536184b92cfc5047cd4781eeb75c636292f453a.tar.bz2
Remove MSVSProject argument projectguid and replace with MSVS_PROJECT_GUID in all test files.
Diffstat (limited to 'test')
-rw-r--r--test/MSVS/common-prefix.py2
-rw-r--r--test/MSVS/runfile.py2
-rw-r--r--test/MSVS/vs-7.0-clean.py2
-rw-r--r--test/MSVS/vs-7.0-scc-files.py2
-rw-r--r--test/MSVS/vs-7.0-scc-legacy-files.py2
-rw-r--r--test/MSVS/vs-7.1-clean.py2
-rw-r--r--test/MSVS/vs-7.1-scc-files.py2
-rw-r--r--test/MSVS/vs-7.1-scc-legacy-files.py2
-rw-r--r--test/MSVS/vs-scc-files.py2
-rw-r--r--test/MSVS/vs-scc-legacy-files.py2
10 files changed, 10 insertions, 10 deletions
diff --git a/test/MSVS/common-prefix.py b/test/MSVS/common-prefix.py
index f511edc..070ce0d 100644
--- a/test/MSVS/common-prefix.py
+++ b/test/MSVS/common-prefix.py
@@ -91,7 +91,7 @@ env=Environment(tools=['msvs'], MSVS_VERSION = '8.0')
testsrc = %(testsrc)s
env.MSVSProject(target = 'Test.vcproj',
- projectguid = '%(project_guid)s',
+ MSVS_PROJECT_GUID = '%(project_guid)s',
slnguid = '{SLNGUID}',
srcs = testsrc,
buildtarget = 'Test.exe',
diff --git a/test/MSVS/runfile.py b/test/MSVS/runfile.py
index 78e2c0d..08c8f31 100644
--- a/test/MSVS/runfile.py
+++ b/test/MSVS/runfile.py
@@ -96,7 +96,7 @@ SConscript_contents = """\
env=Environment(tools=['msvs'], MSVS_VERSION = '8.0')
env.MSVSProject(target = 'Test.vcproj',
- projectguid = '%(PROJECT_GUID)s',
+ MSVS_PROJECT_GUID = '%(PROJECT_GUID)s',
slnguid = '{SLNGUID}',
srcs = ['test.cpp'],
buildtarget = 'Test.exe',
diff --git a/test/MSVS/vs-7.0-clean.py b/test/MSVS/vs-7.0-clean.py
index 603ae89..91a8cb2 100644
--- a/test/MSVS/vs-7.0-clean.py
+++ b/test/MSVS/vs-7.0-clean.py
@@ -52,7 +52,7 @@ testresources = ['test.rc']
testmisc = ['readme.txt']
p = env.MSVSProject(target = 'Test.vcproj',
- projectguid='%(PROJECT_GUID)s',
+ MSVS_PROJECT_GUID='%(PROJECT_GUID)s',
srcs = testsrc,
incs = testincs,
localincs = testlocalincs,
diff --git a/test/MSVS/vs-7.0-scc-files.py b/test/MSVS/vs-7.0-scc-files.py
index a517610..bb45e55 100644
--- a/test/MSVS/vs-7.0-scc-files.py
+++ b/test/MSVS/vs-7.0-scc-files.py
@@ -57,7 +57,7 @@ testresources = ['test.rc']
testmisc = ['readme.txt']
env.MSVSProject(target = 'Test.vcproj',
- projectguid='%(PROJECT_GUID)s',
+ MSVS_PROJECT_GUID='%(PROJECT_GUID)s',
slnguid = '{SLNGUID}',
srcs = testsrc,
incs = testincs,
diff --git a/test/MSVS/vs-7.0-scc-legacy-files.py b/test/MSVS/vs-7.0-scc-legacy-files.py
index 30f2a7c..d6eb247 100644
--- a/test/MSVS/vs-7.0-scc-legacy-files.py
+++ b/test/MSVS/vs-7.0-scc-legacy-files.py
@@ -55,7 +55,7 @@ testresources = ['test.rc']
testmisc = ['readme.txt']
env.MSVSProject(target = 'Test.vcproj',
- projectguid='%(PROJECT_GUID)s',
+ MSVS_PROJECT_GUID='%(PROJECT_GUID)s',
slnguid = '{SLNGUID}',
srcs = testsrc,
incs = testincs,
diff --git a/test/MSVS/vs-7.1-clean.py b/test/MSVS/vs-7.1-clean.py
index 4561557..515a9e6 100644
--- a/test/MSVS/vs-7.1-clean.py
+++ b/test/MSVS/vs-7.1-clean.py
@@ -52,7 +52,7 @@ testresources = ['test.rc']
testmisc = ['readme.txt']
p = env.MSVSProject(target = 'Test.vcproj',
- projectguid='%(PROJECT_GUID)s',
+ MSVS_PROJECT_GUID='%(PROJECT_GUID)s',
srcs = testsrc,
incs = testincs,
localincs = testlocalincs,
diff --git a/test/MSVS/vs-7.1-scc-files.py b/test/MSVS/vs-7.1-scc-files.py
index 7ffbd8c..9fdf5e1 100644
--- a/test/MSVS/vs-7.1-scc-files.py
+++ b/test/MSVS/vs-7.1-scc-files.py
@@ -57,7 +57,7 @@ testresources = ['test.rc']
testmisc = ['readme.txt']
env.MSVSProject(target = 'Test.vcproj',
- projectguid='%(PROJECT_GUID)s',
+ MSVS_PROJECT_GUID='%(PROJECT_GUID)s',
slnguid = '{SLNGUID}',
srcs = testsrc,
incs = testincs,
diff --git a/test/MSVS/vs-7.1-scc-legacy-files.py b/test/MSVS/vs-7.1-scc-legacy-files.py
index 2178eda..8bb6b96 100644
--- a/test/MSVS/vs-7.1-scc-legacy-files.py
+++ b/test/MSVS/vs-7.1-scc-legacy-files.py
@@ -55,7 +55,7 @@ testresources = ['test.rc']
testmisc = ['readme.txt']
env.MSVSProject(target = 'Test.vcproj',
- projectguid='%(PROJECT_GUID)s',
+ MSVS_PROJECT_GUID='%(PROJECT_GUID)s',
slnguid = '{SLNGUID}',
srcs = testsrc,
incs = testincs,
diff --git a/test/MSVS/vs-scc-files.py b/test/MSVS/vs-scc-files.py
index d5e66d5..2c16da2 100644
--- a/test/MSVS/vs-scc-files.py
+++ b/test/MSVS/vs-scc-files.py
@@ -63,7 +63,7 @@ testresources = ['test.rc']
testmisc = ['readme.txt']
env.MSVSProject(target = '{project_file}',
- projectguid='{project_guid}',
+ MSVS_PROJECT_GUID='{project_guid}',
srcs = testsrc,
incs = testincs,
localincs = testlocalincs,
diff --git a/test/MSVS/vs-scc-legacy-files.py b/test/MSVS/vs-scc-legacy-files.py
index cb2cca2..7badd61 100644
--- a/test/MSVS/vs-scc-legacy-files.py
+++ b/test/MSVS/vs-scc-legacy-files.py
@@ -63,7 +63,7 @@ testresources = ['test.rc']
testmisc = ['readme.txt']
env.MSVSProject(target = '{project_file}',
- projectguid='{project_guid}',
+ MSVS_PROJECT_GUID='{project_guid}',
srcs = testsrc,
incs = testincs,
localincs = testlocalincs,