This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: C/C++ testsuite uniqness
- From: Mike Stump <mstump at apple dot com>
- To: Benjamin Kosnik <bkoz at redhat dot com>
- Cc: gcc at gcc dot gnu dot org
- Date: Mon, 13 Jan 2003 17:24:31 -0800
- Subject: Re: C/C++ testsuite uniqness
On Monday, January 13, 2003, at 04:50 PM, Benjamin Kosnik wrote:
Each test in the testsuites should have unique name.
Really? I thought just name + path had to be unique.
For the purposes of the testsuite output, the test name is the part
before the \n and after the :.
The testcase and testsuite can encode any information it wants in
there. Some parts may be a path.
PASS: bug1.c
PASS: bug1.c
is not unique, and is wrong, on the other hand:
PASS: bug1.c -O0
PASS: bug2.c -O1
is unique and is correct. I do not mean to suggest:
PASS: one/name.c
PASS: two/name.c
is wrong.