aboutsummaryrefslogtreecommitdiffstats
path: root/test/run_tests_util.py
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2009-12-23 20:47:20 +0000
committerzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2009-12-23 20:47:20 +0000
commit24265424027ffff14861ef9b6de9e57307b9feeb (patch)
treec6205a642c086595c68802e0a267c5f701938eee /test/run_tests_util.py
parent7b0c8dd3a94fed17493e2f01dc2fa32bc1eb3a20 (diff)
downloadgoogletest-24265424027ffff14861ef9b6de9e57307b9feeb.tar.gz
googletest-24265424027ffff14861ef9b6de9e57307b9feeb.tar.bz2
googletest-24265424027ffff14861ef9b6de9e57307b9feeb.zip
Removes support for MSVC 7.1 from the scons scripts.
Diffstat (limited to 'test/run_tests_util.py')
-rwxr-xr-xtest/run_tests_util.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/run_tests_util.py b/test/run_tests_util.py
index fb7fd387..9e57931e 100755
--- a/test/run_tests_util.py
+++ b/test/run_tests_util.py
@@ -111,8 +111,6 @@ KNOWN BUILD DIRECTORIES
On Windows:
<%(proj)s root>/scons/build/win-dbg8/%(proj)s/scons/
<%(proj)s root>/scons/build/win-opt8/%(proj)s/scons/
- <%(proj)s root>/scons/build/win-dbg/%(proj)s/scons/
- <%(proj)s root>/scons/build/win-opt/%(proj)s/scons/
On Mac:
<%(proj)s root>/scons/build/mac-dbg/%(proj)s/scons/
<%(proj)s root>/scons/build/mac-opt/%(proj)s/scons/
@@ -127,7 +125,7 @@ IS_CYGWIN = os.name == 'posix' and 'CYGWIN' in os.uname()[0]
# Definition of CONFIGS must match that of the build directory names in the
# SConstruct script. The first list item is the default build configuration.
if IS_WINDOWS:
- CONFIGS = ('win-dbg8', 'win-opt8', 'win-dbg', 'win-opt')
+ CONFIGS = ('win-dbg8', 'win-opt8')
elif IS_MAC:
CONFIGS = ('mac-dbg', 'mac-opt')
else: