Index: boost/test/detail/unit_test_parameters.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/test/detail/unit_test_parameters.hpp,v retrieving revision 1.7 diff -u -r1.7 unit_test_parameters.hpp --- boost/test/detail/unit_test_parameters.hpp 13 Feb 2003 08:07:20 -0000 1.7 +++ boost/test/detail/unit_test_parameters.hpp 24 Apr 2003 14:44:14 -0000 @@ -37,7 +37,7 @@ c_string_literal const LOG_FORMAT = "BOOST_TEST_LOG_FORMAT"; // --log_format c_string_literal const OUTPUT_FORMAT = "BOOST_TEST_OUTPUT_FORMAT"; // --output_format -enum report_level { CONFIRMATION_REPORT, SHORT_REPORT, DETAILED_REPORT, NO_REPORT }; +enum report_level { CONFIRMATION_REPORT, SHORT_REPORT, DETAILED_REPORT, NO_REPORT, BAD_REPORT }; c_string_literal const report_level_names[] = { "confirm" , "short" , "detailed" , "no" }; enum output_format { HRF /* human readable format */, XML /* XML */ }; Index: libs/test/src/unit_test_result.cpp =================================================================== RCS file: /cvsroot/boost/boost/libs/test/src/unit_test_result.cpp,v retrieving revision 1.15 diff -u -r1.15 unit_test_result.cpp --- libs/test/src/unit_test_result.cpp 15 Feb 2003 21:55:32 -0000 1.15 +++ libs/test/src/unit_test_result.cpp 24 Apr 2003 14:44:14 -0000 @@ -490,7 +490,7 @@ static int const map_size = sizeof(name_value_map)/sizeof(my_pair); - report_level rl; + report_level rl = BAD_REPORT; if( reportlevel.empty() ) rl = CONFIRMATION_REPORT; else {