Skip to content

Commit f611deb

Browse files
committed
Merge branch 'master' into user/niwilson/zos
2 parents dab2463 + db3b532 commit f611deb

File tree

6 files changed

+110
-63
lines changed

6 files changed

+110
-63
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,19 @@ testtry
7777
testtry2
7878
testtrygrep
7979
testSinput
80+
testSoutput
8081
testbtables
8182
testsaved1
8283
testsaved2
84+
testoutput8
85+
testoutput8-jit
86+
testoutput8-dfa
87+
testoutput16
88+
testoutput16-jit
89+
testoutput16-dfa
90+
testoutput32
91+
testoutput32-jit
92+
testoutput32-dfa
8393

8494
m4/libtool.m4
8595
m4/ltoptions.m4

Makefile.am

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -841,6 +841,7 @@ EXTRA_DIST += \
841841

842842
CLEANFILES += \
843843
testSinput \
844+
testSoutput \
844845
test3input \
845846
test3output \
846847
test3outputA \
@@ -854,6 +855,13 @@ CLEANFILES += \
854855
testtrygrep \
855856
testNinputgrep
856857

858+
clean-local: testoutput-clean
859+
.PHONY: testoutput-clean
860+
testoutput-clean:
861+
-rm -rf testoutput8 testoutput8-jit testoutput8-dfa
862+
-rm -rf testoutput16 testoutput16-jit testoutput16-dfa
863+
-rm -rf testoutput32 testoutput32-jit testoutput32-dfa
864+
857865
## ------------ End of testing -------------
858866

859867

README

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -637,9 +637,9 @@ NON-AUTOTOOLS-BUILD.
637637
The RunTest script runs the pcre2test test program (which is documented in its
638638
own man page) on each of the relevant testinput files in the testdata
639639
directory, and compares the output with the contents of the corresponding
640-
testoutput files. RunTest uses a file called testtry to hold the main output
641-
from pcre2test. Other files whose names begin with "test" are used as working
642-
files in some tests.
640+
testoutput files. RunTest places its output in directories
641+
testoutput{8,16,32}{,-jit,-dfa}. Other files whose names begin with "test" are
642+
used as working files in some tests.
643643

644644
Some tests are relevant only when certain build-time options were selected. For
645645
example, the tests for UTF-8/16/32 features are run only when Unicode support

0 commit comments

Comments
 (0)