From d1c839ccb894920ede08e2103e4bfe23bc04317b Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 22 Nov 2006 09:33:46 +0000 Subject: [PATCH] Merge:Enable pch test on msvc [SVN r36144] --- test/test_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_all.py b/test/test_all.py index 1ded06fee..234a17680 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -162,7 +162,7 @@ if os.name == 'posix': if string.find(os.uname()[0], "CYGWIN") == -1: tests.append("library_order") -if string.find(get_toolset(), 'gcc') == 0: +if string.find(get_toolset(), 'gcc') == 0 or string.find(get_toolset(), 'msvc') == 0: tests.append("gcc_runtime") tests.append("pch")