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