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

Merge "Unbreak Boost.Build tests"

See https://svn.boost.org/trac/boost/changeset/72883

Authorized by Beman.


[SVN r72884]
This commit is contained in:
Vladimir Prus
2011-07-04 09:10:38 +00:00
parent c16f350bb6
commit 690335e9b1
2 changed files with 3 additions and 3 deletions

View File

@@ -247,8 +247,8 @@ class Tester(TestCmd.TestCmd):
# Find where jam_src is located. Try for the debug version if it is
# lying around.
dirs = [os.path.join('../engine/src', jam_build_dir + '.debug'),
os.path.join('../engine/src', jam_build_dir),
dirs = [os.path.join('../engine', jam_build_dir + '.debug'),
os.path.join('../engine', jam_build_dir),
]
for d in dirs:
if os.path.exists(d):

View File

@@ -8,6 +8,6 @@ import BoostBuild
t = BoostBuild.Tester(pass_toolset=0)
t.run_build_system(extra_args="--debug --build-system=test")
t.run_build_system(extra_args="--debug --build-system=test/test")
t.cleanup()