summaryrefslogtreecommitdiff
path: root/test/MSVS
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-02-22 01:51:36 +0000
committerSteven Knight <knight@baldmt.com>2009-02-22 01:51:36 +0000
commit8d0d79f80cc3e409b5bd3272c13f508c7bae1f61 (patch)
tree78edfc8130b7ebce0f36b54154cab682e5dae881 /test/MSVS
parent693024bcc37264c3e59c8a92c9e018b312700498 (diff)
downloadscons-8d0d79f80cc3e409b5bd3272c13f508c7bae1f61.tar.gz
Disable the cut-and-paste tests for executing from generated Visual
Studio 9.0 and 9.0Exp project+solution files until we actually support generating those versions...
Diffstat (limited to 'test/MSVS')
-rw-r--r--test/MSVS/vs-9.0-exec.py4
-rw-r--r--test/MSVS/vs-9.0Exp-exec.py4
2 files changed, 8 insertions, 0 deletions
diff --git a/test/MSVS/vs-9.0-exec.py b/test/MSVS/vs-9.0-exec.py
index 79e2ad05..be968854 100644
--- a/test/MSVS/vs-9.0-exec.py
+++ b/test/MSVS/vs-9.0-exec.py
@@ -43,6 +43,10 @@ if sys.platform != 'win32':
msvs_version = '9.0'
+# TODO: remove when we add support
+msg = "Generating Visual Studio %s project files is not supported yet; skipping test.\n"
+test.skip_test(msg % msvs_version)
+
if not msvs_version in test.msvs_versions():
msg = "Visual Studio %s not installed; skipping test.\n" % msvs_version
test.skip_test(msg)
diff --git a/test/MSVS/vs-9.0Exp-exec.py b/test/MSVS/vs-9.0Exp-exec.py
index 69726d79..eb8e32df 100644
--- a/test/MSVS/vs-9.0Exp-exec.py
+++ b/test/MSVS/vs-9.0Exp-exec.py
@@ -43,6 +43,10 @@ if sys.platform != 'win32':
msvs_version = '9.0Exp'
+# TODO: remove when we add support
+msg = "Generating Visual Studio %s project files is not supported yet; skipping test.\n"
+test.skip_test(msg % msvs_version)
+
if not msvs_version in test.msvs_versions():
msg = "Visual Studio %s not installed; skipping test.\n" % msvs_version
test.skip_test(msg)