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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user