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