On Mon, 13 Jan 2003, Mike Stump wrote:
Each test in the testsuites should have unique name. The following
C++
testcases were added recently, and violate this rule:
The easy way to fix this is to prepend a globally unique string to each
one, e.g.
test0000-bug1.c
test0001-bug2.c
test0002-bug3.c
...
Bad idea?
I'm not sure I understand your idea. You want to have a static counter
and just increment it each time you print a testsuite result? Well,
this would violate the idea that the test case names are long term
stable. If it were reinitialized to 1 for each testsuite, and bumped
for each printed line, that might work: