jamfile

来自「boost库提供标准的C++ API 配合dev c++使用,功能更加强大」· 代码 · 共 22 行

TXT
22
字号
import testing ;

# A number of tests which should succeed
compile a.cpp ;
compile-fail b.cpp ;
link-fail a.cpp : : link-no ;
link c.cpp : : link-yes ;
run c.cpp : : : : run-yes ;
run-fail c.cpp : : : <define>RESULTCODE=1 : run-no ;

# some tests which should fail

compile-fail a.cpp : : fail-compile-no ;
compile b.cpp : : fail-compile-yes ;
link a.cpp : : fail-link-yes ;
link-fail c.cpp : : fail-link-no ;
run-fail c.cpp : : : : fail-run-no ;
run c.cpp : : : <define>RESULTCODE=1 : fail-run-yes ;

# Make sure we still fail if a dependency of an expected-failure test
# fails. 
link-fail b.cpp : : fail-link-no-dependency ;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?