1# copyright John Maddock 2003 2# Use, modification and distribution are subject to the 3# Boost Software License, Version 1.0. (See accompanying file 4# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 6# bring in the rules for testing 7import testing ; 8 9test-suite static_assert : 10 [ run static_assert_test.cpp ] 11 [ compile-fail static_assert_test_fail_1.cpp ] 12 [ compile-fail static_assert_test_fail_2.cpp ] 13 [ compile-fail static_assert_test_fail_3.cpp ] 14 [ compile-fail static_assert_test_fail_4.cpp ] 15 [ compile-fail static_assert_test_fail_5.cpp ] 16 [ compile-fail static_assert_test_fail_6.cpp ] 17 [ compile-fail static_assert_test_fail_7.cpp ] 18 [ compile-fail static_assert_test_fail_8.cpp ] 19 [ compile-fail static_assert_test_fail_9.cpp ] 20 [ compile-fail static_assert_test_fail_10.cpp ] 21; 22 23build-project ../example ; 24 25 26 27 28 29 30 31