stripped tabs from files

[SVN r21011]
This commit is contained in:
John Maddock
2003-11-30 13:06:58 +00:00
parent d19f04af7b
commit 1a50827c46
4 changed files with 78 additions and 78 deletions

View File

@ -19,7 +19,7 @@ rule regex-test-run ( sources + : input * )
$(input) $(input)
: # test-files : # test-files
: # requirements : # requirements
<threading>multi <threading>multi
: # test name : # test name
] ; ] ;
} }

View File

@ -6,22 +6,22 @@ SOURCES = command_line main time_boost time_greta time_localised_boost time_pcre
if $(HS_REGEX_PATH) if $(HS_REGEX_PATH)
{ {
HS_SOURCES = $(HS_REGEX_PATH)/regcomp.c $(HS_REGEX_PATH)/regerror.c $(HS_REGEX_PATH)/regexec.c $(HS_REGEX_PATH)/regfree.c ; HS_SOURCES = $(HS_REGEX_PATH)/regcomp.c $(HS_REGEX_PATH)/regerror.c $(HS_REGEX_PATH)/regexec.c $(HS_REGEX_PATH)/regfree.c ;
POSIX_OPTS = <define>BOOST_HAS_POSIX=1 <include>$(HS_REGEX_PATH) ; POSIX_OPTS = <define>BOOST_HAS_POSIX=1 <include>$(HS_REGEX_PATH) ;
} }
else if $(USE_POSIX) else if $(USE_POSIX)
{ {
POSIX_OPTS = <define>BOOST_HAS_POSIX=1 ; POSIX_OPTS = <define>BOOST_HAS_POSIX=1 ;
} }
if $(PCRE_PATH) if $(PCRE_PATH)
{ {
PCRE_SOURCES = $(PCRE_PATH)/chartables.c $(PCRE_PATH)/get.c $(PCRE_PATH)/pcre.c $(PCRE_PATH)/study.c ; PCRE_SOURCES = $(PCRE_PATH)/chartables.c $(PCRE_PATH)/get.c $(PCRE_PATH)/pcre.c $(PCRE_PATH)/study.c ;
PCRE_OPTS = <define>BOOST_HAS_PCRE=1 <include>$(PCRE_PATH) ; PCRE_OPTS = <define>BOOST_HAS_PCRE=1 <include>$(PCRE_PATH) ;
} }
else if $(USE_PCRE) else if $(USE_PCRE)
{ {
PCRE_OPTS = <define>BOOST_HAS_PCRE=1 <find-library>pcre ; PCRE_OPTS = <define>BOOST_HAS_PCRE=1 <find-library>pcre ;
} }

View File

@ -12,82 +12,82 @@ subproject libs/regex/test/auto-link-test ;
import testing ; import testing ;
run run
# sources # sources
<template>../../build/regex-options <template>../../build/regex-options
../regress/parse.cpp ../regress/parse.cpp
../regress/regress.cpp ../regress/regress.cpp
../regress/tests.cpp ../regress/tests.cpp
<lib>../../../test/build/boost_prg_exec_monitor <lib>../../../test/build/boost_prg_exec_monitor
: :
: # input files : # input files
../regress/tests.txt ../regress/tests.txt
: # requirements : # requirements
<library-path>../../../../stage/lib <library-path>../../../../stage/lib
<define>BOOST_LIB_DIAGNOSTIC=1 <define>BOOST_LIB_DIAGNOSTIC=1
: # program name : # program name
regex_regress regex_regress
; ;
run run
# sources # sources
<template>../../build/regex-options <template>../../build/regex-options
../regress/parse.cpp ../regress/parse.cpp
../regress/regress.cpp ../regress/regress.cpp
../regress/tests.cpp ../regress/tests.cpp
<lib>../../../test/build/boost_prg_exec_monitor <lib>../../../test/build/boost_prg_exec_monitor
: :
: # input files : # input files
../regress/tests.txt ../regress/tests.txt
: # requirements : # requirements
<library-path>../../../../stage/lib <library-path>../../../../stage/lib
<define>TEST_UNICODE=1 <define>TEST_UNICODE=1
<define>BOOST_LIB_DIAGNOSTIC=1 <define>BOOST_LIB_DIAGNOSTIC=1
: # program name : # program name
wide_regex_regress wide_regex_regress
; ;
# and now the dll versions: # and now the dll versions:
run run
# sources # sources
<template>../../build/regex-options <template>../../build/regex-options
../regress/parse.cpp ../regress/parse.cpp
../regress/regress.cpp ../regress/regress.cpp
../regress/tests.cpp ../regress/tests.cpp
<lib>../../../test/build/boost_prg_exec_monitor <lib>../../../test/build/boost_prg_exec_monitor
: :
: # input files : # input files
../regress/tests.txt ../regress/tests.txt
: # requirements : # requirements
<library-path>../../../../stage/lib <library-path>../../../../stage/lib
<define>BOOST_ALL_DYN_LINK=1 <define>BOOST_ALL_DYN_LINK=1
<runtime-link>dynamic <runtime-link>dynamic
<define>BOOST_LIB_DIAGNOSTIC=1 <define>BOOST_LIB_DIAGNOSTIC=1
: # program name : # program name
regex_regress_dll regex_regress_dll
; ;
run run
# sources # sources
<template>../../build/regex-options <template>../../build/regex-options
../regress/parse.cpp ../regress/parse.cpp
../regress/regress.cpp ../regress/regress.cpp
../regress/tests.cpp ../regress/tests.cpp
<lib>../../../test/build/boost_prg_exec_monitor <lib>../../../test/build/boost_prg_exec_monitor
: :
: # input files : # input files
../regress/tests.txt ../regress/tests.txt
: # requirements : # requirements
<define>BOOST_ALL_DYN_LINK=1 <define>BOOST_ALL_DYN_LINK=1
<runtime-link>dynamic <runtime-link>dynamic
<library-path>../../../../stage/lib <library-path>../../../../stage/lib
<define>TEST_UNICODE=1 <define>TEST_UNICODE=1
<define>BOOST_LIB_DIAGNOSTIC=1 <define>BOOST_LIB_DIAGNOSTIC=1
: # program name : # program name
wide_regex_regress_dll wide_regex_regress_dll
; ;

View File

@ -557,7 +557,7 @@ void cpp_tests(const basic_regex<C, T, A>& e, bool recurse = true)
unsigned int hl_match_id; unsigned int hl_match_id;
bool bool
#if defined(__BORLANDC__) || defined(BOOST_MSVC) #if (defined(__BORLANDC__) || defined(BOOST_MSVC)) && !defined(BOOST_DISABLE_WIN32)
__cdecl __cdecl
#endif #endif
hl_grep_test_proc(const RegEx& e) hl_grep_test_proc(const RegEx& e)