2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 12:22:17 +00:00
Files
build/test/v1_testing/Jamfile
Dave Abrahams 8270fed72e Tests for v1 testing
[SVN r16345]
2002-11-20 15:51:53 +00:00

20 lines
417 B
Plaintext

TOOLS = $(TOOLS[1]) ;
project-root ;
# bring in rules for testing
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
lib mylib : lib.cpp ;
compile foo.cpp : : compile ;
compile-fail foo.cpp : <define>NOCOMPILE : nocompile ;
link foo.cpp <lib>mylib : : link ;
link-fail foo.cpp <lib>mylib : <define>NOLINK : nolink ;
run foo.cpp <lib>mylib
: # args
: # input-files
: <define>RUN
: run ;