blob: 1f0fed3598e4ab06abce3aa2df836af839b5d88e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
#
# Makefile to run all tests for MNV, on Dos-like machines
# with sh.exe or zsh.exe in the path or not.
#
# Author: Bill McCarthy
#
# Requires a set of Unix tools: echo, diff, etc.
# Don't use unix-like shell.
SHELL = cmd.exe
DEL = del
DELDIR = rd /s /q
MV = move /y
CP = copy /y
CAT = type
MNVPROG = ..\\mnv
default: nongui
include Make_all.mak
# Explicit dependencies.
test_options_all.res: opt_test.mnv
TEST_OUTFILES = $(SCRIPTS_TINY_OUT)
DOSTMP = dostmp
# Keep $(DOSTMP)/*.in
.PRECIOUS: $(patsubst %.out, $(DOSTMP)/%.in, $(TEST_OUTFILES))
.SUFFIXES: .in .out .res .mnv
# Add --gui-dialog-file to avoid getting stuck in a dialog.
COMMON_ARGS = $(NO_INITS) --gui-dialog-file guidialog
nongui: nolog tinytests newtests report
gui: nolog tinytests newtests report
tiny: nolog tinytests report
benchmark: $(SCRIPTS_BENCH)
report:
@rem without the +eval feature test_result.log is a copy of test.log
@if exist test.log ( copy /y test.log test_result.log > nul ) \
else ( echo No failures reported > test_result.log )
$(MNVPROG) -u NONE $(COMMON_ARGS) -S util\summarize.mnv messages
-if exist starttime del starttime
@echo.
@echo Test results:
@cmd /c type test_result.log
@if exist test.log ( echo TEST FAILURE & exit /b 1 ) \
else ( echo ALL DONE )
# Execute an individual new style test, e.g.:
# mingw32-make -f Make_ming.mak test_largefile
$(NEW_TESTS):
-if exist $@.res del $@.res
-if exist test.log del test.log
-if exist messages del messages
-if exist starttime del starttime
@$(MAKE) -f Make_ming.mak $@.res MNVPROG=$(MNVPROG) --no-print-directory
@type messages
@if exist test.log exit 1
# Delete files that may interfere with running tests. This includes some files
# that may result from working on the tests, not only from running them.
clean:
-@if exist *.out $(DEL) *.out
-@if exist *.failed $(DEL) *.failed
-@if exist *.res $(DEL) *.res
-@if exist $(DOSTMP) rd /s /q $(DOSTMP)
-@if exist test.in $(DEL) test.in
-@if exist test.ok $(DEL) test.ok
-@if exist Xdir1 $(DELDIR) Xdir1
-@if exist Xfind $(DELDIR) Xfind
-@if exist XfakeHOME $(DELDIR) XfakeHOME
-@if exist X* $(DEL) X*
-@for /d %%i in (X*) do @rd /s/q %%i
-@if exist mnvinfo $(DEL) mnvinfo
-@if exist test.log $(DEL) test.log
-@if exist test_result.log del test_result.log
-@if exist messages $(DEL) messages
-@if exist starttime $(DEL) starttime
-@if exist benchmark.out del benchmark.out
-@if exist opt_test.mnv $(DEL) opt_test.mnv
-@if exist gen_opt_test.log $(DEL) gen_opt_test.log
-@if exist guidialog $(DEL) guidialog
-@if exist guidialogfile $(DEL) guidialogfile
nolog:
-@if exist test.log $(DEL) test.log
-@if exist test_result.log del test_result.log
-@if exist messages $(DEL) messages
-@if exist starttime $(DEL) starttime
# Tiny tests. Works even without the +eval feature.
tinytests: $(SCRIPTS_TINY_OUT)
# Copy the input files to dostmp, changing the fileformat to dos.
$(DOSTMP)/%.in : %.in
if not exist $(DOSTMP)\nul mkdir $(DOSTMP)
if exist $(DOSTMP)\$< $(DEL) $(DOSTMP)\$<
$(MNVPROG) -u util\dos.mnv $(COMMON_ARGS) "+set ff=dos|f $@|wq" $<
# For each input file dostmp/test99.in run the tests.
# This moves test99.in to test99.in.bak temporarily.
%.out : $(DOSTMP)/%.in
-@if exist test.out $(DEL) test.out
-@if exist $(DOSTMP)\$@ $(DEL) $(DOSTMP)\$@
$(MV) $(notdir $<) $(notdir $<).bak > NUL
$(CP) $(DOSTMP)\$(notdir $<) $(notdir $<) > NUL
$(CP) $(basename $@).ok test.ok > NUL
$(MNVPROG) -u util\dos.mnv $(COMMON_ARGS) -s dotest.in $(notdir $<)
-@if exist test.out $(MV) test.out $(DOSTMP)\$@ > NUL
-@if exist $(notdir $<).bak $(MV) $(notdir $<).bak $(notdir $<) > NUL
-@if exist test.ok $(DEL) test.ok
-@if exist Xdir1 $(DELDIR) /s /q Xdir1
-@if exist Xfind $(DELDIR) Xfind
-@if exist XfakeHOME $(DELDIR) XfakeHOME
-@del X*
-@if exist mnvinfo del mnvinfo
$(MNVPROG) -u util\dos.mnv $(COMMON_ARGS) "+set ff=unix|f test.out|wq" \
$(DOSTMP)\$@
@diff test.out $(basename $@).ok & if errorlevel 1 \
( $(MV) test.out $(basename $@).failed > NUL \
& del $(DOSTMP)\$@ \
& echo $(basename $@) FAILED >> test.log ) \
else ( $(MV) test.out $(basename $@).out > NUL )
# New style of tests uses MNV script with assert calls. These are easier
# to write and a lot easier to read and debug.
# Limitation: Only works with the +eval feature.
newtests: newtestssilent
@if exist messages type messages
newtestssilent: $(NEW_TESTS_RES)
.mnv.res:
@echo $(MNVPROG) > mnvcmd
$(MNVPROG) -u NONE $(COMMON_ARGS) -S runtest.mnv $*.mnv
@$(DEL) mnvcmd
test_gui.res: test_gui.mnv
@echo $(MNVPROG) > mnvcmd
$(MNVPROG) -u NONE $(COMMON_ARGS) -S runtest.mnv $<
@$(DEL) mnvcmd
test_gui_init.res: test_gui_init.mnv
@echo $(MNVPROG) > mnvcmd
$(MNVPROG) -u util\gui_preinit.mnv -U util\gui_init.mnv $(NO_PLUGINS) -S runtest.mnv $<
@$(DEL) mnvcmd
opt_test.mnv: util/gen_opt_test.mnv ../optiondefs.h ../../runtime/doc/options.txt
$(MNVPROG) -e -s -u NONE $(COMMON_ARGS) --nofork -S $^
@if exist gen_opt_test.log ( type gen_opt_test.log & exit /b 1 )
test_bench_regexp.res: test_bench_regexp.mnv
-$(DEL) benchmark.out
@echo $(MNVPROG) > mnvcmd
$(MNVPROG) -u NONE $(COMMON_ARGS) -S runtest.mnv $*.mnv
@$(DEL) mnvcmd
$(CAT) benchmark.out
|