2
0
mirror of https://github.com/boostorg/atomic.git synced 2026-02-09 10:22:20 +00:00
Files
atomic/test/Jamfile.v2
Andrey Semashev 1bda03c997 Attempt to fix tests on MSVC
[SVN r85574]
2013-09-05 17:01:50 +00:00

26 lines
615 B
Plaintext

# Boost.Atomic Library test Jamfile
#
# Copyright (c) 2011 Helge Bahmann
# Copyright (c) 2012 Tim Blechmann
#
# 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/atomic/test
: requirements
<threading>multi
<library>/boost/thread//boost_thread
<library>/boost/atomic//boost_atomic
;
test-suite atomic
: [ run native_api.cpp ]
[ run fallback_api.cpp ]
[ run atomicity.cpp ]
[ run ordering.cpp ]
[ run lockfree.cpp ]
;