📄 library_test_all.sh
字号:
if test $# -eq 0then echo "Usage: $0 <bjam arguments>" echo "Typical bjam arguments are:" echo " --toolset=msvc-7.1,gcc" echo " variant=debug,release,profile" echo " link=static,shared" echo " threading=single,multi" echo echo "note: make sure this script is run from boost root directory !!!" exit 1fiif ! test -e libsthen echo No libs directory found. Run from boost root directory !!! exit 1fi#html headercat <<end >status/library_status_contents.html<!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><!--(C) Copyright 2007 Robert Ramey - http://www.rrsd.com . Use, modification and distribution is subject to the Boost SoftwareLicense, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy athttp://www.boost.org/LICENSE_1_0.txt)--><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="../boost.css"><title>Library Status Contents</title><body>endcd >nul libs# runtests, create library pages, and body of summary pagefor lib_name in *do if test -d $lib_name then cd >nul $lib_name if test -e "test/Jamfile.v2" then cd >nul test echo $lib_name echo >>../../../status/library_status_contents.html "<a target=\"detail\" href=\"../libs/$lib_name/test/library_status.html\">$lib_name</a><br>" ../../../tools/regression/library_test $@ cd >nul .. fi for sublib_name in * do if test -d $sublib_name then cd >nul $sublib_name if test -e "test/Jamfile.v2" then cd >nul test echo $lib_name/$sublib_name echo >>../../../../status/library_status_contents.html "<a target=\"detail\" href=\"../libs/$lib_name/$sublib_name/test/library_status.html\">$lib_name/$sublib_name</a><br>" ../../../../tools/regression/library_test $@ cd >nul .. fi cd >nul .. fi done cd >nul .. fidonecd >nul ..#html trailercat <<end >>status/library_status_contents.html</body></html>end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -