2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

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]
This commit is contained in:
Vladimir Prus
2004-08-27 08:16:38 +00:00
parent 79c0ddb5d7
commit 92b18afe73

View File

@@ -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()