From 92b18afe7347ccdc5af8b6972ffe480643bc350f Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Fri, 27 Aug 2004 08:16:38 +0000 Subject: [PATCH] Do no check for return status of build at all. For some reason, on msvc, 0 is returned and that broke the test. But really, we're interested only if user-defined generator is run, not that the result is compiled. [SVN r24779] --- v2/test/custom_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/test/custom_generator.py b/v2/test/custom_generator.py index e48ab4781..d5c633223 100644 --- a/v2/test/custom_generator.py +++ b/v2/test/custom_generator.py @@ -52,7 +52,7 @@ int main() t.write("r.rc", """ """) -t.run_build_system(status=1, stderr=None) +t.run_build_system(status=None, stderr=None) t.expect_content("bin/$toolset/debug/r.obj", "rc-object\n") t.cleanup()