]> andersk Git - splint.git/blob - test/Makefile.am
Added manual test cases.
[splint.git] / test / Makefile.am
1 ## This file currently uses GNU Make features; those should really be replaced
2 ## by configure-time handling.
3
4 AUTOMAKE_OPTIONS = 1.5 foreign
5
6 ## Use this to configure diff output
7 DIFFFLAGS = 
8
9 # -u show context
10
11 ## Set up the splint commands
12
13 SPLINT    = $(top_builddir)/src/splint$(EXEEXT)
14
15 unexport LARCH_PATH
16 unexport LCLIMPORTDIR
17
18
19 ### This is horrible!  Can't we make top_builddir absolute?
20 SPLINTNEST = ../$(top_builddir)/src/splint$(EXEEXT)
21
22 SPLINTPNEST = @$(SPLINTNEST) -nof
23 SPLINTP   = @$(SPLINT) -nof
24
25 # Make sure .splintrc files are not used so test results do not
26 # depend on local settings.
27 SPLINTRN  = $(SPLINTP) -hints -booltype "bool"
28 SPLINTR   = $(SPLINTRN) -exportlocal +debugfcnconstraint
29
30 SPLINTRNNEST  = $(SPLINTPNEST) -hints -booltype "bool"
31 SPLINTRNEST   = $(SPLINTRNNEST) -exportlocal +debugfcnconstraint
32
33 ###
34 ### rcfiles not included becuase file names will not match exactly
35 ###
36
37 UNITTESTS = \
38   help \
39   abstptr abstract alias alttypes ansireserved argorder \
40   args blocks break cases cast charlit clauses commentchar compdestroy \
41   constannot controldepth csyntax czechnames czechoslovaknames deadparam \
42   decl enum exports external fields flags forbody format freearray \
43   funcpointer functionmacro glob globals impabstract info init inparam internal iter keep libs \
44   linked lintcomments list loopexec \
45   macros macrosef merge mergenull modifies modtest moduncon \
46   mongoincludes mystrncat noeffect null observer oldstyle outglob outparam \
47   postnotnull preds prefixes printflike rc refcounts release repexpose \
48   returned sharing shifts slovaknames \
49   specclauses \
50   special stack staticarray strings \
51   structassign typequals ud ulstypes union unioninit unreachable unsignedcompare \
52   unused ullint utypes void widestrings
53 UNITEXPECTS = $(addsuffix .expect, $(UNITTESTS))
54
55 SUBDIRTESTS = metastate mergestate tainted fileio \
56    simplebufferConstraintTests moreBufferTests moreBufferTests2 globalbufferannotation \
57    maxset strchr for manual
58
59 ### warnuse doesn't work yet!
60 SUBDIRTESTS += tests2.2
61 SUBDIRTESTS += tests2.4
62 SUBDIRTESTS += tests2.5
63 SUBDIRTESTS += db1 db2 db3
64
65 SPLINTTESTS = $(UNITTESTS) $(SUBDIRTESTS)
66
67 QUICKTESTS = db3
68
69 .PHONY: all check
70 all check: fulltest
71
72 .PHONY: version
73 version:
74         -$(SPLINTP) -help version
75
76 .PHONY: help
77 help:
78         -@$(SPLINT)
79         -@LARCH_PATH=/dev/null; $(SPLINT) -nof empty.lcl
80         -@$(SPLINTP) -help
81         -@$(SPLINTP) -asdf
82         -@$(SPLINTP) +boolint +boolint 
83         -@$(SPLINTP) -help flags alpha
84         -@$(SPLINTP) -help flags all
85
86 .PHONY: clean-local
87 clean-local:
88         -rm -f *~ #*# *.o *.lcs a.out
89         -cd db1; $(MAKE) clean
90         -cd db2; $(MAKE) clean
91         -cd db3; $(MAKE) clean
92
93 ## All tests need splint to be built
94
95 $(SPLINTTESTS): $(SPLINT)
96
97 $(SPLINT):
98         cd $(top_builddir)/src; $(MAKE)
99
100 ## This is a kludgey way of processing the output to make it match exactly
101 ## The last matcher is the most annoying, as it can differ (the first two are
102 ##  pretty much fixed); usually, you'll have 'make[1]:', but on DOS it is
103 ##  'make.exe[1]:' (it might even be 'c:/path/to/make.exe[1]:', but that's
104 ##  not supported).
105 ## The tests should really be re-done as shell-scripts or something... maybe
106 ##  autotest could be used once it's finished.
107
108 CLEANOUTPUT = $(GREP) -v "Splint 3." | $(GREP) -v "$(SPLINT)" | $(GREP) -v "^make.*\[[1-9]*\]:" | $(GREP) -v "config.status: creating test/Makefile" | $(GREP) -v "cd .. && " | $(GREP) -v "CONFIG_HEADERS=" | $(GREP) -v "CONFIG_FILES="
109
110 ## Not real C code
111
112 .c.expect:
113         $(MAKE) $* |& $(CLEANOUTPUT) >$*.expect && cat $*.expect
114
115 .c.diff:
116         $(MAKE) $* |& $(CLEANOUTPUT) >$*.out && diff $*.expect $*.out
117
118 #drl temporally take this out.
119 #.PHONY: expects
120 #expects:
121 #       @echo "Saving old expects..."; \
122 #        cat *.expect >expects-`date +"%y-%m-%d-%H"`
123 #       @for TEST in $(UNITTESTS) $(INTEGTESTS); do \
124 #          echo "Making $$TEST.expect..."; \
125 #          $(MAKE) $$TEST 2>&1 | $(CLEANOUTPUT) >$$TEST.expect; \
126 #          cat $$TEST.expect; \
127 #        done
128
129 .PHONY: quicktest
130 quicktest:
131         @for TEST in $(QUICKTESTS); do \
132            echo "Checking $$TEST..."; \
133            $(MAKE) $$TEST 2>&1 | $(CLEANOUTPUT) >$$TEST.out && \
134              $(DIFF) $(DIFFFLAGS) $$TEST.expect $$TEST.out || \
135                echo "*** FAIL ***"; \
136          done
137
138 .PHONY: fulltest
139 fulltest:
140         @echo "Testing $(PACKAGE) $(VERSION)..."
141         @echo
142         @echo "Version Info:"
143         @$(SPLINTP) -help version
144         @$(SPLINTP) -help vars
145         @echo ""
146         @echo "Tests:"
147         @echo ""
148         @for TEST in $(SPLINTTESTS); do \
149            echo "Checking $$TEST..."; \
150            $(MAKE) $$TEST 2>&1 | $(CLEANOUTPUT) >$$TEST.out && \
151              $(DIFF) $(DIFFFLAGS) $$TEST.expect $$TEST.out || \
152                echo "*** FAIL ***"; \
153          done
154
155 ### Rules for tests start here
156
157 .PHONY: abstptr
158 abstptr:
159         -$(SPLINTR) abstptr -expect 9
160         -$(SPLINTR) abstptr +voidabstract -expect 6
161
162 .PHONY: abstract
163 abstract:
164         -$(SPLINTR) abst_t.lcl commentcmd.c -expect 15
165
166 .PHONY: alias
167 alias:
168         -$(SPLINTR) +lh mut
169         -$(SPLINTR) mut alias +globalias -expect 19
170         -$(SPLINTR) mut alias2 +globalias -expect 17
171         -$(SPLINTR) +lh alias3 -expect 14 
172         -$(SPLINTR) +lh alias4 +boolint
173         -$(SPLINTR) alias4 -pred +retalias -expect 6
174         -$(SPLINTR) +lh alias5 +memchecks -null -specundef -expect 5
175
176 .PHONY: alttypes
177 alttypes:
178         -$(SPLINTR) alttypes.c -expect 2
179
180 ###
181 ### evans 2001-06-07 - updated nameCheck.c to reflect C9X.
182 ### Reports one new errors for ansireserved.c - wctomb is bad even as a local
183 ###    variable (could be a macro?)
184 ### Reports 3 additional errors for +checks; no longer suppresses name errors
185 ###    in the presense of other errors.
186 ###
187
188 .PHONY: ansireserved
189 ansireserved:
190         -$(SPLINTR) ansireserved.c +ansireserved -nolib -expect 9
191         -$(SPLINTR) ansireserved.c +ansireserved +ansireservedlocal -nolib -expect 11
192         -$(SPLINTRN) ansireserved.c +checks -exportlocal -exportheadervar -exportheader -expect 12
193         -$(SPLINTR) ansireserved2.c +ansireserved -expect 1
194
195 .PHONY: argorder
196 argorder:
197         -$(SPLINTR) argorder.c -expect 4
198         -$(SPLINTR) argorder2  -expect 5
199         -$(SPLINTR) argorder3.c -expect 8
200         -$(SPLINTR) argorder4 -expect 9
201         -$(SPLINTR) argorder4 -evalorder -expect 1
202         -$(SPLINTR) argorder5.c +evalorderuncon -expect 3
203
204 .PHONY: args
205 args:
206         -$(SPLINTR) args -noeffect -expect 12
207
208 .PHONY: blocks
209 blocks:
210         -$(SPLINTR) blocks.c -expect 4
211         -$(SPLINTR) blocks.c +ifblock +elseifcomplete -expect 7
212         -$(SPLINTR) blocks.c -ifempty +whileempty +whileblock -expect 3
213         -$(SPLINTR) blocks.c -ifempty +forempty +forblock -expect 3
214         -$(SPLINTR) blocks.c +allempty -expect 6
215         -$(SPLINTRN) blocks.c +strict -exportlocal +partial -exportheader -expect 11
216
217 .PHONY: break
218 break:
219         -$(SPLINTR) break.c -expect 4
220         -$(SPLINTR) break.c +deepbreak -expect 6
221         -$(SPLINTR) break.c +deepbreak -looploopbreak -expect 5
222
223 .PHONY: cases
224 cases: 
225         -$(SPLINTR) cases.c -expect 5
226         -$(SPLINTR) cases2.c -expect 2
227         -$(SPLINTRN) cases2.c +checks -exportlocal -exportheader -expect 3
228         -$(SPLINTRN) cases2.c +checks -exportlocal -exportheader -branchstate -expect 3
229
230 .PHONY: cast
231 cast:
232         -$(SPLINTR) cast -accessmodule -expect 20
233         -$(SPLINTRN) cast2.c +checks -exportlocal -exportheader -expect 3
234
235 ### Two addition errors detected with 2.5 with -numliteral.
236
237 .PHONY: charlit
238 charlit:
239         -$(SPLINTR) +hints charlit.c -expect 4
240         -$(SPLINTR) +hints -numliteral charlit.c -expect 6
241         -$(SPLINTR) +hints charlit.c +charintliteral +ignoresigns
242
243 .PHONY: clauses
244 clauses: 
245         -$(SPLINTR) clauses.c +memchecks -expect 4
246         -$(SPLINTR) clauses2.c +memchecks 
247         -$(SPLINTR) clauses3.c +memchecks -expect 2
248         -$(SPLINTR) clauses3.c +memchecks +unixlib -expect 3
249
250 .PHONY: commentchar
251 commentchar:
252         -$(SPLINTR) commentchar.c -expect 4
253         -$(SPLINTR) -commentchar '#' commentchar.c -expect 4
254
255 .PHONY: controldepth
256 controldepth:
257         -$(SPLINTR) +hints -controlnestdepth 2 controldepth.c -expect 2
258         -$(SPLINTR) +hints -controlnestdepth 1 controldepth.c -expect 2
259
260 .PHONY: compdestroy
261 compdestroy:
262         -$(SPLINTRN) compdestroy.c +checks -exportlocal -exportheader -expect 1
263         -$(SPLINTRN) compdestroy.c +checks -exportlocal -exportheader +strictdestroy -expect 2
264         -$(SPLINTRN) compdestroy.c +checks -exportlocal -exportheader +strictdestroy +strictusereleased -expect 3
265         -$(SPLINTRN) compdestroy.c +strict +partial -exportheader -expect 3
266
267 .PHONY: constannot
268 constannot:
269         ${SPLINTRN} constannot.c +arraybounds  -exportlocal -expect 2
270
271 .PHONY: csyntax
272 csyntax:
273         -$(SPLINTR) +quiet -incondefs csyntax.c -expect 1 
274         -$(SPLINTR) +quiet csyntax2.c -expect 2
275         -$(SPLINTR) +quiet csyntax3.c -expect 1
276         -$(SPLINTR) +quiet -incondefs csyntax4.c
277         -$(SPLINTR) +quiet csyntax5.c
278         -$(SPLINTR) +quiet csyntax6.c
279         -$(SPLINTR) +quiet csyntax7.c
280         -$(SPLINTR) +quiet csyntax8.c
281         -$(SPLINTR) +quiet csyntax9.c
282         -$(SPLINTR) +quiet csyntax10.c
283         -$(SPLINTR) +quiet csyntax11.c
284         -$(SPLINTR) +quiet csyntax12.c
285         -$(SPLINTR) +quiet csyntax13.c -expect 1
286         -$(SPLINTR) +quiet csyntax14.c
287         -$(SPLINTR) +quiet csyntax15.c
288         -$(SPLINTR) +quiet csyntax16.c -expect 2
289         -$(SPLINTR) +quiet csyntax17.c -expect 3
290
291 .PHONY: czechnames
292 czechnames:
293         -$(SPLINTR) czechnames.c
294         -$(SPLINTR) +hints +czech czechnames.c -expect 2
295         -$(SPLINTR) +hints +czech -czechvars czechnames.c -expect 1
296         -$(SPLINTR) +hints +czech -accessczech czechnames.c -expect 6
297
298 .PHONY: czechoslovaknames
299 czechoslovaknames:
300         -$(SPLINTR) +hints +czechoslovak czechnames.c -expect 1
301         -$(SPLINTR) +hints +czechoslovak slovaknames.c -expect 1
302         -$(SPLINTR) +hints +czechoslovak +slovakvars slovaknames.c -expect 2
303
304 ###
305 ### deadparam added 2001-05-27
306 ###
307
308 .PHONY: deadparam
309 deadparam:
310         ${SPLINTR} deadparam.c -expect 3
311
312 #
313 # Was expect 3 before 2.4.  Earlier versions did not handle implicit
314 # function pointers correctly.
315 #
316
317 .PHONY: decl
318 decl:
319         -$(SPLINTR) decl.c -expect 2
320         -$(SPLINTRN) decl.c +strict -exportlocal -expect 5
321         -$(SPLINTR) decl2 -expect 4
322
323 .PHONY: enum
324 enum:
325         -$(SPLINTR) enum -expect 16
326         -$(SPLINTR) enum -misscase -expect 14
327
328 .PHONY: exports
329 exports:
330         -$(SPLINTR) exports.c +exporttype +exportvar +exportfcn +topuse +typeuse -expect 6
331         -$(SPLINTR) exports.c +exportany -expect 3
332         -$(SPLINTR) exports.c
333
334 .PHONY: external
335 external:
336         -$(SPLINTR) external.c +partial
337         -$(SPLINTR) external.c +partial +distinctexternalnames +ansi89limits -expect 2
338         -$(SPLINTR) external.c -nolib +partial -externalnamelength 3 -expect 3
339         -$(SPLINTR) external.c -nolib +partial -externalnamelength 3 +externalnamecaseinsensitive -expect 3
340         -$(SPLINTR) external.c +partial -externalnamelength 3 -expect 4
341
342 .PHONY: fields
343 fields:
344         -$(SPLINTR) fields.c +memchecks -expect 6
345         -$(SPLINTR) fields2.c +memchecks -expect 5
346         -$(SPLINTR) fields3.c +memchecks
347
348 .PHONY: flags
349 flags:
350         -$(SPLINTR) flags.c -expect 8
351         -$(SPLINTR) +nocomments flags.c -expect 2
352
353 ### Added 2001-06-02
354
355 .PHONY: forbody
356 forbody:
357         ${SPLINTR} forbody.c -expect 2
358
359 ### Added 2001-06-03
360 .PHONY: format
361 format:
362         ${SPLINTR} format.c -expect 3
363         ${SPLINTR} format.c -formatconst 
364
365 # two new errors (invalid lhs)
366
367 .PHONY: funcpointer
368 funcpointer:
369         -$(SPLINTR) +memchecks +noparams funcpointer.c -expect 18
370
371 .PHONY: functionmacro
372 functionmacro:
373         -$(SPLINTR) functionmacro.c -expect 2
374
375 .PHONY: glob
376 glob:
377         -$(SPLINTR) glob -expect 4
378         -$(SPLINTR) glob -globuse -expect 3
379         -$(SPLINTR) glob +globunspec -expect 6
380
381 .PHONY: globals
382 globals:
383         -$(SPLINTR) -modifies globals.c -expect 5
384         -$(SPLINTR) -modifies globals.c +allglobals -expect 6
385         -$(SPLINTR) -modifies globals.c +impcheckedglobals -expect 6
386         -$(SPLINTR) -modifies globals.c -globals -checkstrictglobals -expect 2
387         -$(SPLINTR) -modifies globals.c +globunspec -expect 6
388         -$(SPLINTR) -modifies globals.c +globunspec +allglobals -expect 8
389
390 # Was -accessfile
391 .PHONY: impabstract
392 impabstract: 
393         -$(SPLINTR) -accessmodule impabstract.c 
394         -$(SPLINTR) -accessmodule +hints +impabstract impabstract.c -expect 2
395         -$(SPLINTR) -accessmodule +hints +impabstract impabstract -expect 4
396
397 ###
398 ### evans 2001-12-30: Handle unrecognized pre-processor directives
399 ###    (Reported by Pierluigi Sanzani)
400
401 .PHONY: info
402 info:
403         ${SPLINTR} info.c -expect 4
404
405 ### evans 2001-10-14: Expected errors updated
406 .PHONY: init
407 init:
408         -$(SPLINTR) init.c -expect 14
409         -$(SPLINTRN) init.c +checks -exportlocal -exportheadervar -expect 17
410
411
412 .PHONY: inparam
413 inparam:
414         -$(SPLINTR) inparam.c -expect 2
415         -$(SPLINTR) +impouts inparam.c -expect 1
416
417 .PHONY: internal
418 internal:
419         -$(SPLINTR) internal.c -expect 1
420         -$(SPLINTR) internal.c +distinctinternalnames -expect 1
421         -$(SPLINTR) internal.c +distinctinternalnames +ansi89limits -expect 2
422         -$(SPLINTR) internal.c -internalnamelen 28 -expect 3
423         -$(SPLINTR) internal.c +internalnamecaseinsensitive -expect 3
424         -$(SPLINTR) internal.c +internalnamecaseinsensitive +internalnamelookalike -expect 11
425
426 ###
427 ### iter
428 ### 2001-06-06: Error message for iter.lcl:3,6 fixed to iter.lcl:3:6
429 ### 
430
431 .PHONY: iter
432 iter:
433         -$(SPLINTR) iter -expect 14 -lclexpect 1
434         -$(SPLINTR) iter2.c -expect 12
435
436 .PHONY: keep
437 keep:
438         -$(SPLINTR) keep.c +memchecks -expect 6
439
440 ### libs
441 ### 2001-05-22: 2 new errors found (fixed spec of signal)
442 ### 2001-05-30: 3 new errors found (formatconst)
443
444 .PHONY: libs
445 libs:
446         -$(SPLINTR) libs.c +longunsignedunsignedintegral -expect 18
447         -$(SPLINTR) libs.c -expect 22
448         -$(SPLINTR) libs.c +globunspec +modunspec -expect 25
449         -$(SPLINTR) libs.c +strictlib +globunspec +modunspec -expect 42
450
451 .PHONY: lintcomments
452 lintcomments:
453         -$(SPLINTR) lintcomments.c -expect 5
454         -$(SPLINTR) lintcomments.c -warnlintcomments -expect 1
455         -$(SPLINTR) lintcomments.c -lintcomments -expect 4
456
457 .PHONY: list
458 list:
459         -$(SPLINTR) list.c -expect 3
460
461 ###
462 ### 2002-01-01: Added test case for obvious loop execution.
463 ###
464
465 .PHONY: loopexec
466 loopexec:
467         -$(SPLINTR) loopexec.c -expect 1
468         -$(SPLINTR) loopexec.c -obviousloopexec -expect 3
469
470
471 .PHONY: macros
472 macros:
473         -$(SPLINTR) macros -expect 17 
474         -$(SPLINTR) macros.c +allmacros -expect 34
475         -$(SPLINTR) macros.c +fcnmacros -expect 31
476
477
478 .PHONY: macrosef
479 macrosef:
480         -$(SPLINTR) macrosef -expect 4
481         -$(SPLINTR) macrosef.c +allmacros -expect 3
482         -$(SPLINTR) macrosef.c +allmacros +sefuncon -expect 4
483
484 .PHONY: merge
485 merge:
486         -$(SPLINTRN) merge.c +checks -exportlocal -exportheadervar -exportheader -expect 3
487
488 .PHONY: mergenull
489 mergenull:
490         -$(SPLINTRN) mergenull.c 
491
492 .PHONY: modifies
493 modifies:
494         -$(SPLINTR) modifies.c modclient.c +impcheckedstatics +mustmod -expect 7
495
496 .PHONY: modtest
497 modtest:
498         -$(SPLINTR) modtest -expect 10
499         -$(SPLINTR) modtest +modunspec -expect 13
500         -$(SPLINTR) modtest +mustmod -expect 14
501
502 .PHONY: moduncon
503 moduncon:
504         -$(SPLINTR) moduncon.c +moduncon -memchecks -expect 4
505         -$(SPLINTRN) moduncon.c +strict -exportlocal -expect 22
506
507 .PHONY: mongoincludes
508 mongoincludes:
509         -$(SPLINTR) mongoincludes.c -includenest 1 -expect 19
510         -$(SPLINTR) mongoincludes.c -includenest 2 -expect 10
511         -$(SPLINTR) mongoincludes.c -includenest 3 -expect 4
512         -$(SPLINTR) mongoincludes.c -includenest 4 -expect 1
513         -$(SPLINTR) mongoincludes.c -includenest 5 -expect 0
514
515 .PHONY: mystrncat
516 mystrncat:
517         -$(SPLINTR) mystrncat.c +arraybounds  +arrayboundsread -expect 4 
518
519 .PHONY: noeffect
520 noeffect:
521         ${SPLINT} -nof noeffect.c +allmacros +checks -expect 3
522
523 ###
524 ### 2002-01-01: null1.c: expect increased to 15 because out must be defined
525 ###                         checking detects one new error
526 ###
527
528 .PHONY: null
529 null: 
530         -$(SPLINTR) null1.c -expect 15
531         -$(SPLINTR) null1.c -null -mustdefine -expect 4
532         -$(SPLINTR) null2.c -expect 11
533         -$(SPLINTR) null3.c -expect 15
534         -$(SPLINTR) null3.c -warnunixlib +unixlib -expect 16
535         -$(SPLINTR) null4.c -expect 1
536         -$(SPLINTR) null5.c -expect 4
537         -$(SPLINTR) null6 -expect 4
538         -$(SPLINTR) +quiet null6.lcl -dump null6
539         -$(SPLINTR) null6.c -load null6 -expect 4
540
541 ### Added for 3.0 (bugs reported by Kevin Broady)
542
543 .PHONY: nullret
544 nullret:
545         -$(SPLINTR) nullret.c -expect 2
546         -$(SPLINTR) -nullret nullret.c -expect 1
547
548 .PHONY: nullassign
549 nullassign:
550         -$(SPLINTR) nullassign.c -expect 2
551         -$(SPLINTR) -nullassign nullassign.c -expect 1
552
553
554 #
555 # Before 2.4, expected one more because error was reported both as 
556 # dependent and observer.
557 #
558
559 .PHONY: observer
560 observer:
561         -$(SPLINTRN) observer +checks -exportlocal -exportheader -expect 9
562         -$(SPLINTRN) observer.c +checks -exportlocal -exportheader -expect 8
563         -$(SPLINTR) observer.c -expect 7
564
565 .PHONY: oldstyle
566 oldstyle:
567         -$(SPLINTR) oldstyle -expect 3
568
569 .PHONY: outglob
570 outglob:
571         -$(SPLINTR) outglob -expect 10
572
573 .PHONY: outparam
574 outparam:
575         -$(SPLINTR) outparam -expect 12
576
577 ### evans 2001-08-26: postnotnull new
578
579 .PHONY: postnotnull
580 postnotnull:
581         ${SPLINTR} postnotnull.c -expect 1
582 #
583 # Four new +fcnuse errors for -strict (evans 2001-07-22)
584
585
586 .PHONY: preds
587 preds:
588         -$(SPLINTR) +hints preds.c -expect 6
589         -$(SPLINTRN) +hints preds.c -weak -expect 1
590         -$(SPLINTRN) +hints preds.c -strict -exportlocal -exportheader -expect 12
591
592 .PHONY: prefixes
593 prefixes:
594         -$(SPLINTR) prefixes.c +partial
595         -$(SPLINTRN) prefixes.c +allmacros +checks -exportlocal +partial -exportheader -exportheadervar -expect 4
596         -$(SPLINTR) prefixes.c -typeprefix "T" -expect 2
597         -$(SPLINTR) prefixes.c -typeprefix "^" -expect 1
598         -$(SPLINTR) prefixes.c -typeprefix "^*" -expect 2
599         -$(SPLINTR) prefixes.c -typeprefix "^%*" -expect 2
600         -$(SPLINTR) prefixes.c -typeprefix "^~*" -expect 2
601         -$(SPLINTR) prefixes.c -typeprefix "^" +typeprefixexclude -expect 7
602         -$(SPLINTR) prefixes.c -filestaticprefix "^^" -expect 4
603         -$(SPLINTR) prefixes.c -filestaticprefix "^#" -expect 5
604         -$(SPLINTR) prefixes.c -filestaticprefix "^?&x" -expect 5
605         -$(SPLINTR) prefixes.c -globalprefix "G" -expect 1
606         -$(SPLINTR) prefixes.c -globalprefix "&G?_^" -expect 1
607         -$(SPLINTR) prefixes.c -externalprefix "G" -expect 5
608         -$(SPLINTR) prefixes.c -typeprefix "T" -externalprefix "G" -expect 4
609         -$(SPLINTR) prefixes.c -localprefix "?*" +localprefixexclude -expect 13
610
611 .PHONY: printflike
612 printflike:
613         -$(SPLINTR) printflike.c -expect 6
614         -$(SPLINTR) printflike.c -warnlintcomments -expect 5
615
616 .PHONY: rc
617 rc:
618         -$(SPLINTR) -DMYSTERY='"a flag\"wicked cool"' rc.c -expect 1
619         -$(SPLINTR) -DMYSTERY=12 rc.c -expect 1
620         -$(SPLINTR) -f rc1.splintrc rc.c -expect 1
621         -$(SPLINTR) -UMYSTERY -f rc1.splintrc rc.c -expect 1
622         -$(SPLINTR) -f rc3.splintrc rc.c -expect 1
623
624 .PHONY: rcfiles
625 rcfiles:
626         cd rcfiles; ${MAKE} SPLINT="-$(SPLINTPNEST)"
627
628 .PHONY: refcounts
629 refcounts:
630         -$(SPLINTR) refcounts.c -expect 7 
631
632 .PHONY: release
633 release:
634         -$(SPLINTR) release.c +memchecks -expect 1
635
636 .PHONY: repexpose
637 repexpose:
638         -$(SPLINTR) +lh repexpose +memchecks -expect 12
639         -$(SPLINTR) repexpose +memchecks +retalias -expect 15
640         -$(SPLINTRN) repexpose +checks -exportlocal -expect 27
641
642 ### returned added 2001-05-27
643 ### (Bug discovered checking splint sources.)
644
645 .PHONY: returned
646 returned:
647         ${SPLINTR} returned.c -expect 1
648
649 .PHONY: sharing
650 sharing: 
651         -$(SPLINTR) sharing1.c -expect 21
652         -$(SPLINTR) sharing3.c -expect  3
653         -$(SPLINTR) sharing4.c -expect 13
654         -$(SPLINTR) sharing4.c -paramimptemp -expect 12
655         -$(SPLINTR) sharing5.c -expect 6
656
657 .PHONY: shifts
658 shifts:
659         -$(SPLINTR) shifts.c -expect 4
660         -$(SPLINTR) shifts.c -shiftimplementation -expect 3
661         -$(SPLINTR) shifts.c -shiftnegative -expect 1
662
663 .PHONY: slovaknames
664 slovaknames:
665         -$(SPLINTR) +hints slovaknames.c -expect 1
666         -$(SPLINTR) +hints slovaknames.c +accessslovak 
667         -$(SPLINTR) +hints +slovak slovaknames.c -expect 3
668         -$(SPLINTR) +hints +slovak -slovakvars slovaknames.c -expect 2
669         -$(SPLINTR) +hints +slovak -accessslovak slovaknames.c -expect 7
670
671 .PHONY: specclauses
672 specclauses:
673         -$(SPLINTR) specclauses.c -expect 6
674         -$(SPLINTR) specclauses2.c -expect 8
675         -$(SPLINTR) specclauses3.c -expect 6
676         -$(SPLINTR) specclauses4.c -expect 3
677         -$(SPLINTR) specclauses5.c -expect 3
678
679 .PHONY: specclauses1
680 specclauses1:
681         -$(SPLINTR) specclauses.c -expect 6
682
683 .PHONY: specclauses2
684 specclauses2:
685         -$(SPLINTR) specclauses2.c -expect 8
686
687 .PHONY: specclauses3
688 specclauses3:
689         -$(SPLINTR) specclauses3.c -expect 6
690
691 .PHONY: specclauses4
692 specclauses4:
693         -$(SPLINTR) specclauses4.c -expect 3
694
695 .PHONY: specclauses5
696 specclauses5:
697         -$(SPLINTR) specclauses5.c -expect 3
698
699 .PHONY: special
700 special:
701         -$(SPLINTR) special -expect 20
702         -$(SPLINTR) special -relaxquals -expect 22
703
704 .PHONY: stack
705 stack:
706         -$(SPLINTR) stack.c -expect 5
707         -$(SPLINTR) stack.c -stackref
708
709 .PHONY: staticarray
710 staticarray:
711         -$(SPLINTR) staticarray.c -expect 3
712
713 .PHONY: strings
714 strings:
715         -$(SPLINTR) strings.c -expect 3
716         -$(SPLINTR) -readonlystrings -expect 1 strings.c
717         -$(SPLINTR) +modobserverstrict -maintype -expect 4 strings.c
718
719 .PHONY: structassign
720 structassign:
721         -$(SPLINTR) structassign.c -expect 4
722
723 .PHONY: typequals
724 typequals:
725         -$(SPLINTR) typequals.c tq.lcl -expect 5
726         -$(SPLINTR) typequals.c -expect 2
727
728 .PHONY: ud
729 ud:
730         -$(SPLINTR) ud.c -expect 9
731         -$(SPLINTR) ud2 -specundef -expect 3
732
733 .PHONY: ulstypes
734 ulstypes:
735         -$(SPLINTR) ulstypes.c -expect 8
736         -$(SPLINTR) ulstypes.c +ignorequals 
737         -$(SPLINTRN) ulstypes.c +strict -exportheader -exportheadervar -expect 28
738
739 # 3 more detected with version 2.5 (change in -numliteral setting)
740
741 .PHONY: union
742 union:
743         -$(SPLINTR) +memchecks union.c -expect 8
744
745 ###
746 ### Added 2001-12-30: fixed union initializer checking in response to
747 ### bug report from Jim Zelenka.
748 ###
749
750 .PHONY: unioninit
751 unioninit:
752         -$(SPLINTR) unioninit.c -expect 2
753
754 .PHONY: unreachable
755 unreachable:
756         -$(SPLINTR) unreachable.c -expect 5
757         -$(SPLINTR) -unreachable unreachable.c -expect 2
758         -$(SPLINTR) switch.c -expect 4
759
760 .PHONY: unsignedcompare
761 unsignedcompare:
762         ${SPLINTR} +posixlib unsignedcompare.c -expect 4
763
764
765 ###
766 ### 2001-06-08 evans: 2 new errors after fixing ansireserved name checks
767 ###
768
769 .PHONY: unused
770 unused:
771         -$(SPLINTRN) unused.c +checks -exportlocal -expect 5
772         -$(SPLINTRN) unused.c +checks -exportlocal +topuse -expect 8
773
774 ###
775 ### 2001-06-10: Provided by Jim Zalenka
776 ###
777
778 .PHONY: ullint
779 ullint:
780         ${SPLINTRN} ullint.c -expect 5
781         ${SPLINTRN} ullint.c +charint +charintliteral -expect 2
782
783 ###
784 ### 2001-12-30: Poor warnings reported by Peter Deutsch
785 ###
786
787 .PHONY: utypes
788 utypes:
789         ${SPLINTRN} utypes.c -expect 6
790
791 ###
792
793 .PHONY: void
794 void:
795         ${SPLINTRN} void.c -expect 2
796
797 ###
798 ### 2001-12-30: Problems with wide character strings reported by Nelson Beebe
799 ###
800
801 .PHONY: widestrings
802 widestrings:
803         ${SPLINTRN} widestrings.c -expect 2
804
805 ###
806 ### New since 2.5q:
807 ###
808
809 .PHONY: linked
810 linked:
811         ${SPLINTR} linked.c -expect 4
812         ${SPLINTR} linked2.c -expect 3
813         ${SPLINTR} linked3.c -expect 5
814         ${SPLINTR} linked4.c -expect 6
815         ${SPLINTR} linked5.c -expect 4
816         ${SPLINTR} linked6.c -expect 4
817
818 .PHONY: freearray
819 freearray:
820         ${SPLINTR} freearray.c -expect 1
821
822 .PHONY: sizeof
823 sizeof:
824         -$(SPLINTR) +arraybounds +arrayboundsread sizeof.c -expect 1
825
826 .PHONY: buffertest
827 buffertest:
828         -$(SPLINTR) +arraybounds +arrayboundsread buffertest1.c -expect 5
829
830
831
832 ## Integration Tests
833
834 ## evans 2000-12-22
835 ## db2: 2 errors are no longer reported, since eref is immutable.
836 ## Need to clarify what it means for an object to be immutable;
837 ## there should be 2 types with different storage requirements.
838
839 .PHONY: $(SUBDIRTESTS)
840 $(SUBDIRTESTS):
841         cd $@; $(MAKE) SPLINT="$(SPLINTRNNEST)"
842
843 #drl 11/29/2001 This is a very ugly hack to get make dist to work
844 EXTRA_DIST =  ./abst_t.lcl ./abst_t.lcs  \
845               ./abstptr.lcl ./abstptr.lcs \
846               ./alias.lcl ./alias.lcs \
847               ./alias2.lcl ./alias2.lcs \
848               ./alias3.lcl  \
849               ./db1/erc.lcl \
850               ./db1/bool.lcl \
851               ./db1/dbase.lcl \
852               ./db1/employee.lcl \
853               ./db1/empset.lcl \
854               ./db1/eref.lcl \
855               ./db1/ereftab.lcl \
856               ./alias3.lcs \
857               ./alias3.lh  \
858               ./alias4.lcl  \
859               ./alias4.lcs \
860               ./alias4.lh \
861               ./alias5.lcl \
862               ./alias5.lcs \
863               ./alias5.lh \
864               ./argorder2.lcl \
865               ./argorder2.lcs \
866               ./argorder4.lcl \
867               ./argorder4.lcs \
868               ./args.lcl \
869               ./args.lcs \
870               ./cast.lcl \
871               ./cast.lcs \
872               ./decl2.lcl \
873               ./decl2.lcs \
874               ./empty.lcl \
875               ./enum.lcl \
876               ./enum.lcs \
877               ./glob.lcl \
878               ./glob.lcs \
879               ./impabstract.lcl \
880               ./impabstract.lcs \
881               ./iter.lcl \
882               ./iter.lcs \
883               ./macros.lcl \
884               ./macros.lcs \
885               ./macrosef.lcl \
886               ./macrosef.lcs \
887               ./modtest.lcl \
888               ./modtest.lcs \
889               ./mut.lcl \
890               ./mut.lcs \
891               ./mut.lh \
892               ./mut.lh.expect \
893               ./db2/dbase.lcl \
894               ./db2/employee.lcl \
895               ./db2/empset.lcl \
896               ./db2/erc.lcl \
897               ./db2/eref.lcl \
898               ./db2/ereftab.lcl \
899               ./db2/etest.lcl \
900               ./null6.lcd \
901               ./null6.lcl \
902               ./null6.lcs \
903               ./observer.lcl \
904               ./observer.lcs \
905               ./oldstyle.lcl \
906               ./oldstyle.lcs \
907               ./outglob.lcl \
908               ./outglob.lcs \
909               ./outparam.lcl \
910               ./outparam.lcs \
911               ./rc1.splintrc \
912               ./rc2.splintrc \
913               ./rc3.splintrc \
914               ./rc3.splintrc.os2 \
915               ./repexpose.lcl \
916               ./repexpose.lcs \
917               ./repexpose.lh \
918               ./repexpose.lh.expect \
919               ./special.lcl \
920               ./special.lcs \
921               ./db3/.splintrc \
922               ./db3/bool.lcl \
923               ./db3/check.lcl \
924               ./db3/dbase.lcl \
925               ./db3/employee.lcl \
926               ./db3/empset.lcl \
927               ./db3/erc.lcl \
928               ./db3/eref.lcl \
929               ./db3/ereftab.lcl \
930               ./tq.lcl \
931               ./tq.lcs \
932               ./ud2.lcl \
933               ./ud2.lcs \
934               ./for/.splintrc \
935               ./globalbufferannotation/.splintrc \
936               ./maxset/.splintrc \
937               ./strchr/.splintrc \
938               ./tests2.2/bool.lcl \
939               ./tests2.2/bool.lcs \
940               ./tests2.2/libraries.lcd \
941               ./tests2.2/obsolete.lcd \
942               ./tests2.2/oldversion.lcd \
943               ./tests2.4/subdir/main.lcl \
944               ./tests2.4/subdir/main.lcs \
945               ./tests2.5/newlint.lcd \
946               ./warnuse/warnuse.lcd \
947               ./empty.lcs \
948               ./abstptr.c \
949               ./alias.c \
950               ./alias2.c \
951               ./alias3.c \
952               ./db1/dbase.c \
953               ./db1/drive.c \
954               ./db1/employee.c \
955               ./db1/empset.c \
956               ./db1/erc.c \
957               ./db1/eref.c \
958               ./db1/ereftab.c \
959               ./alias4.c \
960               ./alias5.c \
961               ./alttypes.c \
962               ./ansireserved.c \
963               ./ansireserved2.c \
964               ./argorder.c \
965               ./argorder2.c \
966               ./argorder3.c \
967               ./argorder4.c \
968               ./argorder5.c \
969               ./args.c \
970               ./arrayinit.c \
971               ./blocks.c \
972               ./branchstate.c \
973               ./break.c \
974               ./cases.c \
975               ./buffertest1.c \
976               ./cases2.c \
977               ./cast.c \
978               ./cast2.c \
979               ./charlit.c \
980               ./clauses.c \
981               ./clauses2.c \
982               ./clauses3.c \
983               ./commentchar.c \
984               ./commentcmd.c \
985               ./compdestroy.c \
986               ./csyntax.c \
987               ./constannot.c \
988               ./controldepth.c \
989               ./csyntax10.c \
990               ./csyntax11.c \
991               ./csyntax12.c \
992               ./csyntax13.c \
993               ./csyntax14.c \
994               ./csyntax15.c \
995               ./csyntax16.c \
996               ./csyntax17.c \
997               ./csyntax2.c \
998               ./csyntax3.c \
999               ./csyntax4.c \
1000               ./csyntax5.c \
1001               ./csyntax6.c \
1002               ./csyntax7.c \
1003               ./csyntax8.c \
1004               ./csyntax9.c \
1005               ./czechnames.c \
1006               ./czechoslovaknames.c \
1007               ./deadparam.c \
1008               ./decl.c \
1009               ./decl2.c \
1010               ./dkf5kEnum.c \
1011               ./dkf5kRange.c \
1012               ./dkf5kSprintf.c \
1013               ./ensures.c \
1014               ./enum.c \
1015               ./exports.c \
1016               ./external.c \
1017               ./fields.c \
1018               ./fields2.c \
1019               ./fields3.c \
1020               ./flags.c \
1021               ./glob.c \
1022               ./forbody.c \
1023               ./format.c \
1024               ./freearray.c \
1025               ./funcpointer.c \
1026               ./globals.c \
1027               ./globals2.c \
1028               ./impabstract.c \
1029               ./init.c \
1030               ./innerfree.c \
1031               ./inparam.c \
1032               ./internal.c \
1033               ./iter.c \
1034               ./iter2.c \
1035               ./keep.c \
1036               ./libs.c \
1037               ./linked.c \
1038               ./linked2.c \
1039               ./linked3.c \
1040               ./linked4.c \
1041               ./linked5.c \
1042               ./linked6.c \
1043               ./lintcomments.c \
1044               ./list.c \
1045               ./longconstants.c \
1046               ./macros.c \
1047               ./macrosef.c \
1048               ./merge.c \
1049               ./modclient.c \
1050               ./modifies.c \
1051               ./modtest.c \
1052               ./moduncon.c \
1053               ./mongoincludes.c \
1054               ./mparen.c \
1055               ./mut.c \
1056               ./mystrncat.c \
1057               ./noeffect.c \
1058               ./null1.c \
1059               ./null2.c \
1060               ./null3.c \
1061               ./null4.c \
1062               ./null5.c \
1063               ./db2/dbase.c \
1064               ./db2/drive.c \
1065               ./db2/employee.c \
1066               ./db2/empset.c \
1067               ./db2/erc.c \
1068               ./db2/eref.c \
1069               ./db2/ereftab.c \
1070               ./db2/etest.c \
1071               ./null6.c \
1072               ./nullassign.c \
1073               ./nullret.c \
1074               ./observer.c \
1075               ./oldstyle.c \
1076               ./outglob.c \
1077               ./outparam.c \
1078               ./postnotnull.c \
1079               ./preds.c \
1080               ./prefixes.c \
1081               ./printflike.c \
1082               ./rc.c \
1083               ./refcounts.c \
1084               ./release.c \
1085               ./repexpose.c \
1086               ./returned.c \
1087               ./sharing1.c \
1088               ./sharing2.c \
1089               ./sharing3.c \
1090               ./sharing4.c \
1091               ./sharing5.c \
1092               ./sizeof.c \
1093               ./slovaknames.c \
1094               ./specclauses.c \
1095               ./specclauses2.c \
1096               ./specclauses3.c \
1097               ./specclauses4.c \
1098               ./specclauses5.c \
1099               ./specclauses6.c \
1100               ./special.c \
1101               ./stack.c \
1102               ./staticarray.c \
1103               ./strings.c \
1104               ./structassign.c \
1105               ./switch.c \
1106               ./t1.c \
1107               ./test.c \
1108               ./db3/dbase.c \
1109               ./db3/drive.c \
1110               ./db3/employee.c \
1111               ./db3/empset.c \
1112               ./db3/erc.c \
1113               ./db3/eref.c \
1114               ./db3/ereftab.c \
1115               ./typequals.c \
1116               ./ud.c \
1117               ./ud2.c \
1118               ./ullint.c \
1119               ./ulstypes.c \
1120               ./union.c \
1121               ./unreachable.c \
1122               ./unsignedcompare.c \
1123               ./unused.c \
1124               ./void.c \
1125               ./conditions/miroslaw.c \
1126               ./conditions/releases.c \
1127               ./fileio/file.c \
1128               ./fileio/filebranch.c \
1129               ./fileio/filerw.c \
1130               ./for/for.c \
1131               ./globalbufferannotation/globalvariable.c \
1132               ./maxset/maxsetannotations.c \
1133               ./maxset/maxsetnoannotations.c \
1134               ./mergestate/taintednm.c \
1135               ./metastate/file.c \
1136               ./metastate/file1.c \
1137               ./metastate/file2.c \
1138               ./metastate/file3.c \
1139               ./metastate/file4.c \
1140               ./metastate/file5.c \
1141               ./metastate/file6.c \
1142               ./metastate/file7.c \
1143               ./metastate/filebad.c \
1144               ./metastate/global.c \
1145               ./metastate/nullbranch.c \
1146               ./metastate/nullbranch2.c \
1147               ./metastate/nullret.c \
1148               ./metastate/osd.c \
1149               ./metastate/sockets.c \
1150               ./metastate/sockets2.c \
1151               ./metastate/struct.c \
1152               ./metastate/test.c \
1153               ./metastate/voidptr.c \
1154               ./moreBufferTests/initialization.c \
1155               ./moreBufferTests/simplifyTest.c \
1156               ./moreBufferTests/strncatNotReallyGood.c \
1157               ./moreBufferTests/strncatReallyGood.c \
1158               ./moreBufferTests/strrchr.c \
1159               ./moreBufferTests/unrecogCall.c \
1160               ./nullterminatedtest/buggy1.c \
1161               ./nullterminatedtest/buggy_support1.c \
1162               ./nullterminatedtest/buggy_support_fmakeword.c \
1163               ./nullterminatedtest/test1.c \
1164               ./nullterminatedtest/test3.c \
1165               ./simplebufferConstraintTests/m.c \
1166               ./simplebufferConstraintTests/sizeof.c \
1167               ./simplebufferConstraintTests/test3.c \
1168               ./simplebufferConstraintTests/test7.c \
1169               ./sizeoftest/sizeof.c \
1170               ./strchr/strchr.c \
1171               ./suppressfile/test.c \
1172               ./tainted/sprintf.c \
1173               ./tainted/t1.c \
1174               ./tainted/tainted.c \
1175               ./tainted/tainted2.c \
1176               ./tainted/tainted3.c \
1177               ./tainted/tainted4.c \
1178               ./tainted/tainted5.c \
1179               ./tainted/taintedimplicit.c \
1180               ./tainted/taintedmerge.c \
1181               ./tainted/taintedx.c \
1182               ./tainted/test.c \
1183               ./tclauses/globals.c \
1184               ./tclauses/gt.c \
1185               ./tclauses/modifies.c \
1186               ./tclauses/struct.c \
1187               ./tclauses/undef.c \
1188               ./tests2.2/arbints.c \
1189               ./tests2.2/arrayfcn.c \
1190               ./tests2.2/booldef.c \
1191               ./tests2.2/boolenum.c \
1192               ./tests2.2/boolops.c \
1193               ./tests2.2/break.c \
1194               ./tests2.2/bstring.c \
1195               ./tests2.2/decl.c \
1196               ./tests2.2/enumbool.c \
1197               ./tests2.2/extension.c \
1198               ./tests2.2/libraries.c \
1199               ./tests2.2/modarray.c \
1200               ./tests2.2/nestext.c \
1201               ./tests2.2/offsetof.c \
1202               ./tests2.2/posix.c \
1203               ./tests2.2/realloc.c \
1204               ./tests2.2/rex.c \
1205               ./tests2.2/sizeofarray.c \
1206               ./tests2.2/struct.c \
1207               ./tests2.2a/addassign.c \
1208               ./tests2.2a/arrayparam.c \
1209               ./tests2.2a/bitops.c \
1210               ./tests2.2a/boolcomp.c \
1211               ./tests2.2a/boolenum.c \
1212               ./tests2.2a/dobb.c \
1213               ./tests2.2a/duff.c \
1214               ./tests2.2a/erik.c \
1215               ./tests2.2a/floatdouble.c \
1216               ./tests2.2a/florian.c \
1217               ./tests2.2a/fred.c \
1218               ./tests2.2a/isalpha.c \
1219               ./tests2.2a/notreached.c \
1220               ./tests2.2a/obviousloop.c \
1221               ./tests2.2a/popik.c \
1222               ./tests2.2a/sizeof.c \
1223               ./tests2.2a/toralf.c \
1224               ./tests2.4/subdir/main.c \
1225               ./tests2.4/alignof.c \
1226               ./tests2.4/array.c \
1227               ./tests2.4/bitfields.c \
1228               ./tests2.4/bug1.c \
1229               ./tests2.4/bug2.c \
1230               ./tests2.4/bug3.c \
1231               ./tests2.4/chin.c \
1232               ./tests2.4/cpptest.c \
1233               ./tests2.4/driverstub.c \
1234               ./tests2.4/duffs.c \
1235               ./tests2.4/emptycase.c \
1236               ./tests2.4/enumtest.c \
1237               ./tests2.4/error.c \
1238               ./tests2.4/fink.c \
1239               ./tests2.4/flagequal.c \
1240               ./tests2.4/forward.c \
1241               ./tests2.4/hash.c \
1242               ./tests2.4/hexconstants.c \
1243               ./tests2.4/innercomment.c \
1244               ./tests2.4/komazi.c \
1245               ./tests2.4/longlong.c \
1246               ./tests2.4/main.c \
1247               ./tests2.4/nothing.c \
1248               ./tests2.4/offsetof.c \
1249               ./tests2.4/print.c \
1250               ./tests2.4/ric.c \
1251               ./tests2.4/syncomment.c \
1252               ./tests2.4/syslog.c \
1253               ./tests2.4/test0.c \
1254               ./tests2.4/test1.c \
1255               ./tests2.4/test2.c \
1256               ./tests2.4/timecard.c \
1257               ./tests2.4/toothman.c \
1258               ./tests2.4/ulrich.c \
1259               ./tests2.5/badcomment.c \
1260               ./tests2.5/boolbad.c \
1261               ./tests2.5/boolt.c \
1262               ./tests2.5/booltest.c \
1263               ./tests2.5/dummyfile.c \
1264               ./tests2.5/hoof.c \
1265               ./tests2.5/immutable.c \
1266               ./tests2.5/impabsmodule.c \
1267               ./tests2.5/literals.c \
1268               ./tests2.5/quals.c \
1269               ./tests2.5/sort.c \
1270               ./tests2.5/testalt.c \
1271               ./tests2.5/testimmutable.c \
1272               ./tests2.5/uconstants.c \
1273               ./tests2.5/ull.c \
1274               ./warnuse/warnflags.c \
1275               ./warnuse/warngets.c \
1276               ./warnuse/warnuse.c \
1277               ./moreBufferTests2/unknownsize.c \
1278               ./moreBufferTests2/arrayConstExpr.c \
1279               abstptr.expect \
1280               abstract.expect \
1281               alias.expect \
1282               alttypes.expect \
1283               ansireserved.expect \
1284               argorder.expect \
1285               args.expect \
1286               arrayinit.expect \
1287               blocks.expect \
1288               branchstate.expect \
1289               break.expect \
1290               buffertest.expect \
1291               cases.expect \
1292               cast.expect \
1293               charlit.expect \
1294               clauses.expect \
1295               commentchar.expect \
1296               compdestroy.expect \
1297               constannot.expect \
1298               controldepth.expect \
1299               csyntax.expect \
1300               czechnames.expect \
1301               czechoslovaknames.expect \
1302               db1.expect \
1303               db2.expect \
1304               db3.expect \
1305               deadparam.expect \
1306               decl.expect \
1307               enum.expect \
1308               exports.expect \
1309               external.expect \
1310               fields.expect \
1311               fileio.expect \
1312               flags.expect \
1313               for.expect \
1314               forbody.expect \
1315               format.expect \
1316               freearray.expect \
1317               funcpointer.expect \
1318               glob.expect \
1319               globalbufferannotation.expect \
1320               globals.expect \
1321               help.expect \
1322               impabstract.expect \
1323               init.expect \
1324               inparam.expect \
1325               internal.expect \
1326               iter.expect \
1327               keep.expect \
1328               libs.expect \
1329               linked.expect \
1330               lintcomments.expect \
1331               list.expect \
1332               longconstants.expect \
1333               macros.expect \
1334               macrosef.expect \
1335               maxset.expect \
1336               merge.expect \
1337               mergestate.expect \
1338               metastate.expect \
1339               modifies.expect \
1340               modtest.expect \
1341               moduncon.expect \
1342               mongoincludes.expect \
1343               moreBufferTests.expect \
1344               moreBufferTests2.expect \
1345               mut.lh.expect \
1346               mystrncat.expect \
1347               noeffect.expect \
1348               null.expect \
1349               nullterminatedtest.expect \
1350               observer.expect \
1351               oldstyle.expect \
1352               outglob.expect \
1353               outparam.expect \
1354               postnotnull.expect \
1355               preds.expect \
1356               prefixes.expect \
1357               printflike.expect \
1358               rc.expect \
1359               refcounts.expect \
1360               release.expect \
1361               repexpose.expect \
1362               repexpose.lh.expect \
1363               returned.expect \
1364               sharing.expect \
1365               simplebufferConstraintTests.expect \
1366               sizeof.expect \
1367               sizeoftest.expect \
1368               slovaknames.expect \
1369               specclauses.expect \
1370               special.expect \
1371               stack.expect \
1372               staticarray.expect \
1373               strchr.expect \
1374               strings.expect \
1375               structassign.expect \
1376               tainted.expect \
1377               tests2.2.expect \
1378               tests2.2a.expect \
1379               tests2.3.expect \
1380               tests2.4.expect \
1381               tests2.5.expect \
1382               typequals.expect \
1383               ud.expect \
1384               ullint.expect \
1385               ulstypes.expect \
1386               union.expect \
1387               unreachable.expect \
1388               unsignedcompare.expect \
1389               unused.expect \
1390               void.expect \
1391               ./db1/bool.h \
1392               ./db1/dbase.h \
1393               ./db1/employee.h \
1394               ./db1/empset.h \
1395               ./db1/erc.h \
1396               ./db1/eref.h \
1397               ./db1/ereftab.h \
1398               ./bool.h \
1399               ./decl2.h \
1400               ./exports.h \
1401               ./iter.h \
1402               ./iter2.h \
1403               ./minc1.h \
1404               ./minc2.h \
1405               ./minc3.h \
1406               ./minc4.h \
1407               ./minc5.h \
1408               ./modifies.h \
1409               ./mut.h \
1410               ./db2/bool.h \
1411               ./db2/dbase.h \
1412               ./db2/employee.h \
1413               ./db2/empset.h \
1414               ./db2/erc.h \
1415               ./db2/eref.h \
1416               ./db2/ereftab.h \
1417               ./pivo.h \
1418               ./repexpose.h \
1419               ./db3/bool.h \
1420               ./db3/dbase.h \
1421               ./db3/employee.h \
1422               ./db3/empset.h \
1423               ./db3/erc.h \
1424               ./db3/eref.h \
1425               ./db3/ereftab.h \
1426               ./tq.h \
1427               ./metastate/global.h \
1428               ./suppressfile/test.h \
1429               ./tests2.2/Makefile.hide \
1430               ./tests2.2/mbool.h \
1431               ./tests2.4/forward.h \
1432               ./tests2.4/hash.h \
1433               ./tests2.4/timecard.h \
1434               ./tests2.5/baz.h \
1435               ./tests2.5/bimbim.h \
1436               ./tests2.5/immutable.h \
1437               ./tests2.5/impabsmodule.h \
1438               ./tests2.5/socket.h \
1439               ./Makefile-test.os2 \
1440               ./db1/Makefile \
1441               ./db2/Makefile \
1442               ./db3/Makefile \
1443               ./conditions/Makefile \
1444               ./fileio/Makefile \
1445               ./for/Makefile \
1446               ./globalbufferannotation/Makefile \
1447               ./maxset/Makefile \
1448               ./mergestate/Makefile \
1449               ./metastate/Makefile \
1450               ./moreBufferTests/Makefile \
1451               ./simplebufferConstraintTests/Makefile \
1452               ./strchr/Makefile \
1453               ./tainted/Makefile \
1454               ./temp/Makefile \
1455               ./tests2.2/Makefile.hide \
1456               ./tests2.2/Makefile \
1457               ./tests2.2/Makefile-tests2.2.os2 \
1458               ./tests2.2a/Makefile \
1459               ./tests2.4/Makefile \
1460               ./tests2.4/Makefile-tests2.4.os2 \
1461               ./tests2.5/Makefile \
1462               ./warnuse/Makefile \
1463               ./Makefile.am \
1464               ./Makefile.in \
1465               ./moreBufferTests2/Makefile \
1466               ./fileio/eof.mts ./fileio/file.mts ./fileio/filerw.mts ./mergestate/tainted.mts ./mergestate/taintednm.mts ./metastate/file.mts ./metastate/nullterminated.mts ./metastate/sockets.mts ./tainted/tainted-bad.mts ./tainted/tainted.mts ./fileio/file.xh ./fileio/filerw.xh ./mergestate/tainted.xh ./mergestate/taintednm.xh ./metastate/file.xh ./tainted/tainted.xh \
1467                alias   alttypes ansireserved   \
1468                db2.old-expect  outglob outparam preds  union.pp warnuse.old-expect \
1469                ./tests2.5/badcomment  ./tests2.5/boolbad  ./tests2.5/booltest   ./tests2.5/uconstants 
This page took 1.809569 seconds and 5 git commands to generate.