From: stevenknight Date: Sun, 22 Feb 2009 01:51:36 +0000 (+0000) Subject: Disable the cut-and-paste tests for executing from generated Visual X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=856c10e2236ce199d066c1d226544070e44aa978;p=scons.git 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... git-svn-id: http://scons.tigris.org/svn/scons/trunk@4031 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- 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)