libraries/spcre/libpcre/pcre/RunTest.bat
author Tom Sutcliffe <thomas.sutcliffe@accenture.com>
Sat, 31 Jul 2010 19:07:57 +0100
changeset 23 092bcc217d9d
parent 0 7f656887cf89
permissions -rw-r--r--
Tidied iocli exports, build macro tweaks. Removed 4 overloads of CCommandBase::RunCommand[L] that are no longer used at all, and changed one more to not be exported as it's only used internally to iocli.dll. fixed builds on platforms that don't support btrace or any form of tracing.

@rem  This file was contributed by Ralf Junker, and touched up by
@rem  Daniel Richard G. Test 10 added by Philip H.
@rem  Philip H also changed test 3 to use "wintest" files.
@rem
@rem  MS Windows batch file to run pcretest on testfiles with the correct
@rem  options.
@rem
@rem  Output is written to a newly created subfolder named "testdata".

setlocal

if [%srcdir%]==[]   set srcdir=.
if [%pcretest%]==[] set pcretest=pcretest

if not exist testout md testout

%pcretest% -q      %srcdir%\testdata\testinput1 > testout\testoutput1
%pcretest% -q      %srcdir%\testdata\testinput2 > testout\testoutput2
@rem %pcretest% -q      %srcdir%\testdata\testinput3 > testout\testoutput3
%pcretest% -q      %srcdir%\testdata\wintestinput3 > testout\wintestoutput3
%pcretest% -q      %srcdir%\testdata\testinput4 > testout\testoutput4
%pcretest% -q      %srcdir%\testdata\testinput5 > testout\testoutput5
%pcretest% -q      %srcdir%\testdata\testinput6 > testout\testoutput6
%pcretest% -q -dfa %srcdir%\testdata\testinput7 > testout\testoutput7
%pcretest% -q -dfa %srcdir%\testdata\testinput8 > testout\testoutput8
%pcretest% -q -dfa %srcdir%\testdata\testinput9 > testout\testoutput9
%pcretest% -q      %srcdir%\testdata\testinput10 > testout\testoutput10

fc /n %srcdir%\testdata\testoutput1 testout\testoutput1
fc /n %srcdir%\testdata\testoutput2 testout\testoutput2
rem fc /n %srcdir%\testdata\testoutput3 testout\testoutput3
fc /n %srcdir%\testdata\wintestoutput3 testout\wintestoutput3
fc /n %srcdir%\testdata\testoutput4 testout\testoutput4
fc /n %srcdir%\testdata\testoutput5 testout\testoutput5
fc /n %srcdir%\testdata\testoutput6 testout\testoutput6
fc /n %srcdir%\testdata\testoutput7 testout\testoutput7
fc /n %srcdir%\testdata\testoutput8 testout\testoutput8
fc /n %srcdir%\testdata\testoutput9 testout\testoutput9
fc /n %srcdir%\testdata\testoutput10 testout\testoutput10