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