aboutsummaryrefslogtreecommitdiffstats
path: root/run_tests.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 /run_tests.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 'run_tests.py')
-rwxr-xr-xrun_tests.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/run_tests.py b/run_tests.py
index aa2313e1..e1084056 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -39,12 +39,6 @@ import sys
SCRIPT_DIR = os.path.dirname(__file__) or '.'
-# Some Python tests don't work in all configurations.
-PYTHON_TESTS_TO_SKIP = (
- ('win-dbg', 'gtest_throw_on_failure_test.py'),
- ('win-opt', 'gtest_throw_on_failure_test.py'),
- )
-
sys.path.append(os.path.join(SCRIPT_DIR, 'test'))
import run_tests_util
@@ -56,8 +50,7 @@ def _Main():
test_runner = run_tests_util.TestRunner(script_dir=SCRIPT_DIR)
tests = test_runner.GetTestsToRun(args,
options.configurations,
- options.built_configurations,
- python_tests_to_skip=PYTHON_TESTS_TO_SKIP)
+ options.built_configurations)
if not tests:
sys.exit(1) # Incorrect parameters given, abort execution.