diff options
author | Steven Knight <knight@baldmt.com> | 2008-09-23 16:15:40 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2008-09-23 16:15:40 (GMT) |
commit | 4b764a46532db32edcbbc7a611294a57a02f5693 (patch) | |
tree | f620e13a07710c9cd136d38ce78491e16baeb273 /test/MSVS/vs-8.0-exec.py | |
parent | 379fee93166e2740f09dd5c7e4479a6a1947f842 (diff) | |
download | SCons-4b764a46532db32edcbbc7a611294a57a02f5693.zip SCons-4b764a46532db32edcbbc7a611294a57a02f5693.tar.gz SCons-4b764a46532db32edcbbc7a611294a57a02f5693.tar.bz2 |
Refactor Visual Studio testing logic into a separate TestSConsMSVS
subclass, in its own module.
Diffstat (limited to 'test/MSVS/vs-8.0-exec.py')
-rw-r--r-- | test/MSVS/vs-8.0-exec.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/MSVS/vs-8.0-exec.py b/test/MSVS/vs-8.0-exec.py index f41e2be..b43b2d4 100644 --- a/test/MSVS/vs-8.0-exec.py +++ b/test/MSVS/vs-8.0-exec.py @@ -32,9 +32,9 @@ Visual Studio 8.0 project (.vcproj) and solution (.sln) files. import os import sys -import TestSCons +import TestSConsMSVS -test = TestSCons.TestSCons() +test = TestSConsMSVS.TestSConsMSVS() if sys.platform != 'win32': msg = "Skipping Visual Studio test on non-Windows platform '%s'\n" % sys.platform |