Modified wide character tests to warn not fail when no wide character support is available in the platform.

Modified Jamfiles to use centralised options.
Added wide character concept check.


[SVN r19318]
This commit is contained in:
John Maddock
2003-07-26 11:22:17 +00:00
parent 9d565f63ed
commit 6750cf4892
14 changed files with 304 additions and 36 deletions

View File

@ -5,6 +5,7 @@ subproject libs/regex/example ;
# bring in the rules for testing
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
include $(BOOST_ROOT)/libs/regex/base.jam ;
rule regex-test-run ( sources + : input * )
{
@ -12,6 +13,7 @@ rule regex-test-run ( sources + : input * )
run
# sources
$(sources)
<template>regex-options
# dependencies
<lib>../build/boost_regex
@ -19,9 +21,6 @@ rule regex-test-run ( sources + : input * )
$(input)
: # test-files
: # requirements
<sysinclude>../../../
<define>BOOST_REGEX_NO_LIB=1
<define>BOOST_REGEX_STATIC_LINK=1
<threading>multi
: # test name
] ;