From 057808ddb6d553b6326564f4b07c8ef97fe429e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sat, 16 Jun 2012 02:41:44 +0000 Subject: [PATCH] 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] --- v2/test/example_make.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/v2/test/example_make.py b/v2/test/example_make.py index 1e62702ef..01c542272 100644 --- a/v2/test/example_make.py +++ b/v2/test/example_make.py @@ -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()