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