[29] | 1 | # Boost.Optional Library test Jamfile |
---|
| 2 | # |
---|
| 3 | # Copyright (C) 2003, Fernando Luis Cacciola Carballal. |
---|
| 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 | import testing ; |
---|
| 16 | |
---|
| 17 | { |
---|
| 18 | test-suite optional : |
---|
| 19 | [ run optional_test.cpp ] |
---|
| 20 | [ run optional_test_tie.cpp ] |
---|
| 21 | [ run optional_test_ref.cpp ] |
---|
| 22 | [ run optional_test_inplace.cpp ] |
---|
| 23 | [ run optional_test_io.cpp ] |
---|
| 24 | [ compile-fail optional_test_fail1.cpp ] |
---|
| 25 | [ compile-fail optional_test_fail3a.cpp ] |
---|
| 26 | [ compile-fail optional_test_fail3b.cpp ] |
---|
| 27 | [ compile-fail optional_test_ref_fail1.cpp ] |
---|
| 28 | [ compile-fail optional_test_ref_fail3.cpp ] |
---|
| 29 | [ compile-fail optional_test_ref_fail4.cpp ] |
---|
| 30 | [ compile-fail optional_test_inplace_fail.cpp ] |
---|
| 31 | [ compile-fail optional_test_inplace_fail2.cpp ] |
---|
| 32 | ; |
---|
| 33 | } |
---|