2003-09-29 16:40:02 +00:00
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2003-09-30 06:32:06 +00:00
|
|
|
import testing ;
|
|
|
|
|
2003-09-29 16:40:02 +00:00
|
|
|
{
|
|
|
|
test-suite optional :
|
2004-01-09 11:28:42 +00:00
|
|
|
[ run optional_test.cpp ]
|
|
|
|
[ run optional_test_tie.cpp ]
|
|
|
|
[ run optional_test_ref.cpp ]
|
|
|
|
[ run optional_test_inplace.cpp ]
|
2006-02-09 09:50:56 +00:00
|
|
|
[ run optional_test_io.cpp ]
|
2014-04-22 22:36:19 +02:00
|
|
|
[ run optional_test_move.cpp ]
|
2014-04-29 22:59:06 +02:00
|
|
|
[ run optional_test_equals_none.cpp ]
|
2014-05-22 23:32:49 +02:00
|
|
|
[ run optional_test_value_access.cpp ]
|
2014-06-03 17:36:18 +02:00
|
|
|
[ run optional_test_emplace.cpp ]
|
2014-06-06 23:24:43 +02:00
|
|
|
[ run optional_test_minimum_requirements.cpp ]
|
2004-01-09 11:28:42 +00:00
|
|
|
[ compile-fail optional_test_fail1.cpp ]
|
|
|
|
[ compile-fail optional_test_fail3a.cpp ]
|
|
|
|
[ compile-fail optional_test_fail3b.cpp ]
|
|
|
|
[ compile-fail optional_test_ref_fail1.cpp ]
|
|
|
|
[ compile-fail optional_test_ref_fail3.cpp ]
|
|
|
|
[ compile-fail optional_test_ref_fail4.cpp ]
|
|
|
|
[ compile-fail optional_test_inplace_fail.cpp ]
|
|
|
|
[ compile-fail optional_test_inplace_fail2.cpp ]
|
2014-04-24 10:00:43 +02:00
|
|
|
[ compile-fail optional_test_fail_implicit_bool_convert.cpp ]
|
2014-04-26 23:24:21 +02:00
|
|
|
[ compile-fail optional_test_fail_copying_a_moveable_type.cpp ]
|
|
|
|
[ compile-fail optional_test_fail_optional_rvalue_ref.cpp ]
|
2014-04-28 15:48:55 +02:00
|
|
|
[ compile-fail optional_test_ref_fail_init_from_Trefref.cpp ]
|
|
|
|
[ compile-fail optional_test_ref_fail_init_from_Urefref.cpp ]
|
|
|
|
[ compile-fail optional_test_ref_fail_assign_from_Trefref.cpp ]
|
|
|
|
[ compile-fail optional_test_ref_fail_assign_from_Urefref.cpp ]
|
2014-06-14 22:49:37 +02:00
|
|
|
[ compile-fail optional_test_fail_explicit_convert_in_value_or.cpp ]
|
2014-06-18 15:01:52 +02:00
|
|
|
[ compile-fail optional_test_fail_explicit_convert_in_value_or_call.cpp ]
|
2003-09-29 16:40:02 +00:00
|
|
|
;
|
|
|
|
}
|