mirror of
https://github.com/boostorg/fiber.git
synced 2026-02-02 20:52:21 +00:00
38 lines
918 B
Plaintext
38 lines
918 B
Plaintext
# Boost.strand Library Tests Jamfile
|
|
|
|
# Copyright Oliver Kowalke 2009.
|
|
# 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_fibers
|
|
<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_futures ]
|
|
[ fiber-test test_then ]
|
|
[ fiber-test test_round_robin ]
|
|
;
|