This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: C/C++ testsuite uniqness
- From: <tm_gccmail at mail dot kloo dot net>
- To: Mike Stump <mstump at apple dot com>
- Cc: gcc at gcc dot gnu dot org
- Date: Mon, 13 Jan 2003 16:43:05 -0800 (PST)
- Subject: Re: C/C++ testsuite uniqness
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?
Toshi