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