mirror of
https://github.com/boostorg/optional.git
synced 2026-02-01 11:09:24 +01:00
26 lines
809 B
Plaintext
26 lines
809 B
Plaintext
# Boost Optional Library test Jamfile
|
|
|
|
subproject libs/optional/test ;
|
|
|
|
# bring in rules for testing
|
|
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
|
|
include testing.jam ;
|
|
|
|
# Make tests run by default.
|
|
DEPENDS all : test ;
|
|
|
|
{
|
|
# look in BOOST_ROOT for sources first, just in this Jamfile
|
|
local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
|
|
|
|
test-suite optional :
|
|
[ run libs/optional/test/optional_test.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_fail3.cpp ]
|
|
[ compile-fail libs/optional/test/optional_test_fail4.cpp ]
|
|
[ compile-fail libs/optional/test/optional_test_fail5a.cpp ]
|
|
[ compile-fail libs/optional/test/optional_test_fail5b.cpp ]
|
|
;
|
|
}
|