Skip to content

Commit afedc1c

Browse files
committed
Add tests
[SVN r35244]
1 parent 070e02d commit afedc1c

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

example/Jamfile.v2

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,32 @@
55
project : requirements <library>/boost/python//boost_python ;
66

77
python-extension getting_started1 : getting_started1.cpp ;
8+
9+
bpl-test test1
10+
: # Python test driver
11+
test_getting_started1.py
12+
# extension modules to use
13+
getting_started1 ;
14+
15+
816
python-extension getting_started2 : getting_started2.cpp ;
917

18+
bpl-test test2
19+
: # Python test driver
20+
test_getting_started2.py
21+
# extension modules to use
22+
getting_started2 ;
23+
24+
python-extension std_pair : std_pair.cpp ;
25+
26+
bpl-test test3
27+
: # Python test driver
28+
test_std_pair.py
29+
# extension modules to use
30+
std_pair_ext ;
31+
32+
# Don't run tests by default
33+
explicit test1 test2 test3 ;
34+
alias test : test1 test2 test3 ;
35+
explicit test ;
36+

0 commit comments

Comments
 (0)