From 13c31bf0c229319012fc6c2c602bd2bafee8866f Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 22 Nov 2006 09:33:07 +0000 Subject: [PATCH] Enable pch test on msvc [SVN r36143] --- v2/test/test_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/test/test_all.py b/v2/test/test_all.py index 1ded06fee..234a17680 100644 --- a/v2/test/test_all.py +++ b/v2/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")