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