$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Beman Dawes (bdawes_at_[hidden])
Date: 2002-05-22 20:41:15
At 11:27 AM 5/21/2002, David Abrahams wrote:
 >
 >----- Original Message -----
 >From: "Ronald Garcia" <garcia_at_[hidden]>
 >To: <boost_at_[hidden]>
 >Sent: Tuesday, May 21, 2002 11:01 AM
 >Subject: [boost] Jam-based regression testing
 >
 >
 >> Hi,
 >>
 >> What is the proper procedure for running the Jam-based regression 
tests?
 >>  Currently I am just trying to run:
 >>
 >> bjam -sTOOLS=kcc
 >>
 >> and it seems to be building the executables, but I see no indication of
 >> whether they were run or not.
 >
 >They weren't. Build the "test" target:
 >
 >    bjam -sTOOLS=kcc test
Or to run a specific test: bjam -sTOOLS="kcc como" multi_array
While you can inspect the output log (which I usually redirect to a file 
for later inspection) to see what worked and what didn't, if you are 
running a lot of compilers or the full test suite, it is easier to run the 
jam_regr_html program and look at the output with a web 
browser.  jam_regr_html.cpp is found in the boost-sandbox CVS, 
root/libs/filesystem/example/jam_regr_html.cpp
--Beman