
"Thorsten Ottosen" <thorsten.ottosen@dezide.com> wrote in message news:476156C2.50906@dezide.com...
Now I am confised. You mean you can;t make Boost.Build pass the command line argument to your test module, right?
Boost.Build list might be a better place to get a help with this.
I can try that. Have you ever passed arguments to Boost.Test's unit-test framework with Boost.Build? AFAICT, it is not possible to give these arguments to the "unit-test" rule.
I am not a bit expect in Boost.Build. I believe I was able to pass CLA to test module from run rule invocation somehow. You can always use environment variables
Please let me know, if you still expirience any problemms with Boost.Test
I have played a little with the assertions also. I found that doing
#if (BOOST_MSVC >= 1400) #include <crtdbg.h> #endif
#if (BOOST_MSVC >= 1400) #define DEZIDE_ASSERT _ASSERT #else #define DEZIDE_ASSERT BOOST_ASSERT #endif
Umm, What does above doing exactly? Gennadiy