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

Made the Boost Build example_make.py test explicitly use its own Python interpreter instead of relying on the 'python' executable being available on the system path.

[SVN r78969]
This commit is contained in:
Jurko Gospodnetić
2012-06-16 02:41:44 +00:00
parent 0598997251
commit 057808ddb6

View File

@@ -8,13 +8,10 @@
# Test the 'make' example.
import BoostBuild
import sys
t = BoostBuild.Tester()
t = BoostBuild.Tester('example.python.interpreter="%s"' % sys.executable)
t.set_tree("../example/make")
t.run_build_system()
t.expect_addition(["bin/$toolset/debug/main.cpp"])
t.cleanup()