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