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