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