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