2
0
mirror of https://github.com/boostorg/predef.git synced 2026-02-13 12:42:12 +00:00
Files
predef/test/build.jam
Rene Rivera 9fcecba7cc Most changes from review comments implemented. Remove use of "#elif" for
backward PP compatability. Add BOOST_category_item_AVAILABLE as a
defined, or not, symbol for use with "#ifdef" or "#ifndef". Add
documentation of macros used for detection and version information. Also
replace direct use of BVN(0,0,0) and BVN(0,0,1) with more meaningful
macros that are globally defined, and hence consistent.
2013-01-18 21:25:30 -06:00

23 lines
744 B
Plaintext
Executable File

#!/usr/bin/env b2 -a --verbose-test
# Copyright Redshift Software, Inc. 2011-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)
project test
: requirements
<include>$(BOOST_PREDEF_ROOT)/include
<dependency>$(BOOST_PREDEF_ROOT)/include/boost/predef.h
;
using testing ;
test-suite config :
[ run info_as_cpp.cpp : : : <test-info>always_show_run_output ]
[ run info_as_c.c : : : <test-info>always_show_run_output ]
[ run info_as_objcpp.mm : : : <test-info>always_show_run_output ]
[ run info_as_objc.m : : : <test-info>always_show_run_output ]
[ run version.cpp ]
[ run make.cpp ]
;