2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-20 02:32:19 +00:00
Files
fiber/test/Jamfile.v2
Oliver Kowalke d91578120f fix libname
2013-08-18 22:14:10 +02:00

39 lines
942 B
Plaintext

# Boost.strand Library Tests Jamfile
# Copyright Oliver Kowalke 2013.
# Distributed under 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)
import testing ;
project boost/fiber/test
: requirements
<library>../../test/build//boost_unit_test_framework
<library>/boost/fiber//boost_fiber
<library>/boost/system//boost_system
<library>/boost/thread//boost_thread
<link>static
<threading>multi
;
rule fiber-test ( source )
{
return
[ run $(source).cpp ]
;
}
test-suite fibers :
[ fiber-test test_fiber ]
[ fiber-test test_mutex ]
[ fiber-test test_condition ]
[ fiber-test test_generic_locks ]
[ fiber-test test_unique_lock ]
[ fiber-test test_lock ]
[ fiber-test test_barrier ]
[ fiber-test test_fss ]
[ fiber-test test_futures ]
# [ fiber-test test_then ]
;