
29 Sep
2006
29 Sep
'06
1:38 p.m.
I have a test program that uses the BOOST_AUTO_UNIT_TEST macro (in conjunction with BOOST_AUTO_TEST_MAIN), which has been working well. However, I now need to pass some options to my test program on the command-line and the only way I can see to do this is to drop BOOST_AUTO_TEST_MAIN, add the init_unit_test_suite function and register all my tests "by hand". Is there any way to process my command-line options without losing the AUTO functionality? Thanks in advance.