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