2
0
mirror of https://github.com/boostorg/format.git synced 2026-02-03 09:12:08 +00:00
Files
format/test/Jamfile
Samuel Krempp 72274f33d8 added copyrights
[SVN r17529]
2003-02-19 12:06:50 +00:00

47 lines
1.5 KiB
Plaintext

# Boost.Bind Library test Jamfile
#
# Copyright (c) 2003 Samuel Krempp
#
# Permission to copy, use, modify, sell and distribute this software
# is granted provided this copyright notice appears in all copies.
# This software is provided "as is" without express or implied
# warranty, and with no claim as to its suitability for any purpose.
subproject libs/format/test ;
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
# Make tests run by default.
DEPENDS all : test ;
{
# look in BOOST_ROOT for sources first, just in this Jamfile
local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
test-suite "format"
: [ run libs/format/test/format_test1.cpp
<lib>../../../libs/test/build/boost_test_exec_monitor
: # args
: # input files
: <runtime-link>static # uses locale; metrowerks toolsets don't have a locale in the dynamic library
]
[ run libs/format/test/format_test2.cpp
<lib>../../../libs/test/build/boost_test_exec_monitor
: # args
: # input files
: <runtime-link>static # uses locale; metrowerks toolsets don't have a locale in the dynamic library
]
[ run libs/format/test/format_test_wstring.cpp
<lib>../../../libs/test/build/boost_test_exec_monitor
: # args
: # input files
: <runtime-link>static # uses locale; metrowerks toolsets don't have a locale in the dynamic library
]
;
}