$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: rameysb (Ramey_at_[hidden])
Date: 2004-02-21 15:39:09
In trying to figure out how to used the boost test facility I've
looked at boost/.../filesystem/test/jamfile which contains the
following snippet:
test-suite "filesystem"
: [ run libs/filesystem/test/path_test.cpp
<lib>../../../libs/filesystem/build/boost_filesystem
]
when I try to run the test I get a failure for the lack of the
testing library. Shouldn't the above be:
test-suite "filesystem"
: [ run libs/filesystem/test/path_test.cpp
<lib>../../../libs/test/build/boost_filesystem
<lib>../../../libs/filesystem/build/boost_filesystem
]
my other problem is that I'm doing this with my own library but the
test library isn't getting built with TOOLS=intel-win32. It seems
work when I used TOOLS=vc7.1
Robert Ramey