
MessageSorry. I missed this post.
"Sakharuk, Vlad (GMI Development)"
wrote in message news:AAA38056FF35DE4CB4A65657784B08FAA9E093@MLNYC730MB.amrs.win.ml.com... Hi all, here is my code:
#define BOOST_AUTO_TEST_MAIN #include
BOOST_AUTO_TEST_CASE( test1 ) { BOOST_CHECK(true); }
I link it dynamically with boost ver 1.3.3.1 with gcc-3.4.4 on Linux 2.6. (Note I did not compile this library myself.)
However there is a lot of other libraries linked to the module but never used.
Bellow is output I am getting. I suspect that other libraries have embedded boost tests. BUT 1) There is no test1 in my output.
Can you try 1.34.0? If you remove all libs, does it appear?
2) How I can remove all unnecessary test and stick only to those in my files only?
Why don't you just don't link with other libraries?
Here is command I have used
test1 --output_format=XML --log_level=success
Gennadiy