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