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