2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-02 08:52:07 +00:00
Files
fiber/test/Jamfile.v2
2014-03-04 18:01:42 +01:00

44 lines
1.1 KiB
Plaintext

# Boost.Fiber 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
<target-os>freebsd:<linkflags>"-lrt"
<target-os>linux:<linkflags>"-lrt"
<toolset>pgi:<linkflags>"-lrt"
<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_futures_mt ]
[ fiber-test test_mutex_mt ]
[ fiber-test test_condition_mt ]
;