|
Boost Testing : |
From: Reece Dunn (msclrhd_at_[hidden])
Date: 2006-02-23 16:15:01
Running a monitored build with process_jam_logs in the root directory,
using:
c:/python24/python ./regression.py setup --v2 --pjl-toolset=msvc-7.1
c:/python24/python ./regression.py test --v2 --toolsets=msvc-7.1
--monitored
I get the following error:
# Searching for "bjam.exe" in "c:\devel\regression\boost\tools\jam\src"...
# bjam.exe succesfully built in
"c:\devel\regression\boost\tools\jam\src\bin.ntx
86\bjam.exe" location
# Found preinstalled "c:\devel\regression\process_jam_log.exe"; will use it.
Traceback (most recent call last):
File "./regression.py", line 918, in ?
commands[ command ]( **accept_args( args ) )
File "./regression.py", line 579, in test
stop_build_monitor()
File "./regression.py", line 507, in stop_build_monitor
build_monitor_path = tool_path( 'build_monitor.exe' )
TypeError: tool_path() takes exactly 2 arguments (1 given)
with the latest V2/1.34 regression.py posted by Volodya on this mailing
list. This only affects the V2 version:
344: def tool_path( name_or_spec, v2 ):
- Reece