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