Run config_info and config_test in both single and multi-thread modes.

[SVN r44121]
This commit is contained in:
John Maddock
2008-04-09 11:34:20 +00:00
parent 1ce5a784ae
commit 9c70289360
4 changed files with 12 additions and 8 deletions
+4 -2
View File
@@ -128,9 +128,11 @@ void write_jamfile_v2()
"# the template defined in options_v2.jam.\n#\n"
"path-constant DOT : . ;\n"
"include $(DOT)/options_v2.jam ;\n\n"
"run config_info.cpp ;\n"
"run config_info.cpp : : : <threading>single <toolset>msvc:<runtime-link>static <toolset>msvc:<link>static ;\n"
"run config_info.cpp : : : <threading>multi : config_info_threaded ;\n"
"run math_info.cpp : : : <toolset>borland:<runtime-link>static <toolset>borland:<link>static ;\n"
"run config_test.cpp ;\n"
"run config_test.cpp : : : <threading>single <toolset>msvc:<runtime-link>static <toolset>msvc:<link>static ;\n"
"run config_test.cpp : : : <threading>multi : config_test_threaded ;\n"
"run limits_test.cpp ../../test/build//boost_test_exec_monitor ;\n"
"run abi/abi_test.cpp abi/main.cpp ;\n\n";
ofs << jamfile_v2.str() << std::endl;