Files
static_assert/Jamfile

28 lines
751 B
Plaintext
Raw Normal View History

2003-05-24 11:11:11 +00:00
# copyright John Maddock 2003
2001-09-08 12:07:08 +00:00
subproject libs/static_assert ;
# bring in the rules for testing
2003-09-08 17:38:49 +00:00
import testing ;
2001-09-08 12:07:08 +00:00
test-suite static_assert :
2003-11-30 13:08:35 +00:00
[ run static_assert_test.cpp ]
# [ run static_assert_example_1.cpp ]
[ run static_assert_example_2.cpp ]
[ run static_assert_example_3.cpp ]
[ compile-fail static_assert_test_fail_1.cpp ]
[ compile-fail static_assert_test_fail_2.cpp ]
[ compile-fail static_assert_test_fail_3.cpp ]
[ compile-fail static_assert_test_fail_4.cpp ]
[ compile-fail static_assert_test_fail_5.cpp ]
[ compile-fail static_assert_test_fail_6.cpp ]
[ compile-fail static_assert_test_fail_7.cpp ]
[ compile-fail static_assert_test_fail_8.cpp ]
[ compile-fail static_assert_test_fail_10.cpp ]
;
2001-09-08 12:07:08 +00:00