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