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