Files
boost_optional/test/Jamfile
T

37 lines
1.1 KiB
Plaintext
Raw Normal View History

2003-11-03 02:59:08 +00:00
# Boost.Optional Library test Jamfile
2003-02-14 15:35:18 +00:00
#
2003-11-03 02:59:08 +00:00
# Copyright (C) 2003, Fernando Luis Cacciola Carballal.
2003-02-14 15:35:18 +00:00
#
2003-11-03 02:59:08 +00:00
# Use, modification, and distribution is subject to the Boost Software
# License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
2003-02-14 15:35:18 +00:00
#
2003-01-23 16:29:30 +00:00
subproject libs/optional/test ;
# bring in rules for testing
2003-09-10 15:53:25 +00:00
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
2003-01-23 16:29:30 +00:00
# Make tests run by default.
DEPENDS all : test ;
{
2003-01-23 19:18:35 +00:00
test-suite optional :
2003-11-19 22:22:02 +00:00
[ run optional_test.cpp ]
[ run optional_test_tie.cpp ]
2003-11-28 15:40:20 +00:00
[ run optional_test_ref.cpp ]
2003-11-19 22:22:02 +00:00
[ run optional_test_inplace.cpp ]
[ compile-fail optional_test_fail1.cpp ]
[ compile-fail optional_test_fail2.cpp ]
[ compile-fail optional_test_fail3a.cpp ]
[ compile-fail optional_test_fail3b.cpp ]
2003-11-28 15:40:20 +00:00
[ compile-fail optional_test_ref_fail1.cpp ]
[ compile-fail optional_test_ref_fail2.cpp ]
[ compile-fail optional_test_ref_fail3.cpp ]
[ compile-fail optional_test_ref_fail4.cpp ]
2003-11-19 22:22:02 +00:00
[ compile-fail optional_test_inplace_fail.cpp ]
[ compile-fail optional_test_inplace_fail2.cpp ]
2003-01-24 15:32:11 +00:00
;
2003-01-23 16:29:30 +00:00
}