From 920820c1d0a40ac341ef8f139c2a65b151388228 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Mon, 29 Sep 2003 16:40:02 +0000 Subject: [PATCH] Add V2 Jamfile [SVN r20212] --- test/Jamfile.v2 | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 test/Jamfile.v2 diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 new file mode 100644 index 0000000..61b6fdb --- /dev/null +++ b/test/Jamfile.v2 @@ -0,0 +1,39 @@ +# Boost.Optional Library test Jamfile +# +# Copyright (C) 2003, Fernando Luis Cacciola Carballal. +# +# This material is provided "as is", with absolutely no warranty expressed +# or implied. Any use is at your own risk. +# +# Permission to use or copy this software for any purpose is hereby granted +# without fee, provided the above notices are retained on all copies. +# Permission to modify the code and to distribute modified code is granted, +# provided the above notices are retained, and a notice that the code was +# modified is included with the above copyright notice. +# + +project + : source-location $(BOOST_ROOT) + ; +include testing.jam ; + +{ + test-suite optional : + [ run libs/optional/test/optional_test.cpp ] + [ run libs/optional/test/optional_test_tie.cpp ] + [ run libs/optional/test/optional_test_references.cpp ] + [ run libs/optional/test/optional_test_inplace.cpp ] + [ compile-fail libs/optional/test/optional_test_fail1.cpp ] + [ compile-fail libs/optional/test/optional_test_fail2.cpp ] + [ compile-fail libs/optional/test/optional_test_fail3a.cpp ] + [ compile-fail libs/optional/test/optional_test_fail3b.cpp ] + [ compile-fail libs/optional/test/optional_test_references_fail1a.cpp ] + [ compile-fail libs/optional/test/optional_test_references_fail1b.cpp ] + [ compile-fail libs/optional/test/optional_test_references_fail1c.cpp ] + [ compile-fail libs/optional/test/optional_test_references_fail2.cpp ] + [ compile-fail libs/optional/test/optional_test_references_fail3.cpp ] + [ compile-fail libs/optional/test/optional_test_references_fail4.cpp ] + [ compile-fail libs/optional/test/optional_test_inplace_fail.cpp ] + [ compile-fail libs/optional/test/optional_test_inplace_fail2.cpp ] + ; +}