1 | # Boost.Variant Library test Jamfile |
---|
2 | # |
---|
3 | # Copyright (C) 2003, Eric Friedman, Itay Maman. |
---|
4 | # |
---|
5 | # This material is provided "as is", with absolutely no warranty expressed |
---|
6 | # or implied. Any use is at your own risk. |
---|
7 | # |
---|
8 | # Permission to use or copy this software for any purpose is hereby granted |
---|
9 | # without fee, provided the above notices are retained on all copies. |
---|
10 | # Permission to modify the code and to distribute modified code is granted, |
---|
11 | # provided the above notices are retained, and a notice that the code was |
---|
12 | # modified is included with the above copyright notice. |
---|
13 | # |
---|
14 | |
---|
15 | subproject libs/variant/test ; |
---|
16 | |
---|
17 | # bring in rules for testing |
---|
18 | import testing ; |
---|
19 | |
---|
20 | # Make tests run by default. |
---|
21 | DEPENDS all : test ; |
---|
22 | |
---|
23 | { |
---|
24 | # look in BOOST_ROOT for sources first, just in this Jamfile |
---|
25 | local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ; |
---|
26 | |
---|
27 | test-suite variant |
---|
28 | : |
---|
29 | [ run libs/variant/test/test1.cpp libs/variant/test/class_a.cpp |
---|
30 | : : : : variant_test1 ] |
---|
31 | [ run libs/variant/test/test2.cpp |
---|
32 | : : : : variant_test2 ] |
---|
33 | [ run libs/variant/test/test3.cpp |
---|
34 | : : : : variant_test3 ] |
---|
35 | [ run libs/variant/test/test4.cpp libs/variant/test/class_a.cpp |
---|
36 | : : : : variant_test4 ] |
---|
37 | [ run libs/variant/test/test5.cpp |
---|
38 | : : : : variant_test5 ] |
---|
39 | [ run libs/variant/test/test6.cpp |
---|
40 | : : : : variant_test6 ] |
---|
41 | [ run libs/variant/test/test7.cpp |
---|
42 | : : : : variant_test7 ] |
---|
43 | [ run libs/variant/test/test8.cpp |
---|
44 | : : : : variant_test8 ] |
---|
45 | [ run libs/variant/test/recursive_variant_test.cpp ] |
---|
46 | [ run libs/variant/test/variant_reference_test.cpp ] |
---|
47 | [ run libs/variant/test/variant_comparison_test.cpp ] |
---|
48 | [ run libs/variant/test/variant_visit_test.cpp ] |
---|
49 | ; |
---|
50 | } |
---|