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