gcc/gcc/testsuite
Jeff Law 2645224970 Finish .cexp -> .x conversion.
From-SVN: r17462
1998-01-23 14:13:16 -07:00
..
config Initial revision 1997-08-19 01:34:40 -06:00
g++.old-deja new 1998-01-22 06:04:02 -05:00
g77.f-torture New test. 1997-11-19 09:20:12 -07:00
gcc.c-torture c-torture.exp: Look for .x files instead of .cexp files. 1998-01-17 17:32:36 -07:00
gcc.dg Initial revision 1997-08-19 01:34:40 -06:00
gcc.failure Finish .cexp -> .x conversion. 1998-01-23 14:13:16 -07:00
gcc.misc-tests Initial revision 1997-08-19 01:34:40 -06:00
lib c-torture.exp: Look for .x files instead of .cexp files. 1998-01-17 17:32:36 -07:00
ChangeLog c-torture.exp: Look for .x files instead of .cexp files. 1998-01-17 17:32:36 -07:00
README.g++ Initial revision 1997-08-19 01:34:40 -06:00
README.gcc Initial revision 1997-08-19 01:34:40 -06:00

README.gcc

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains a list of notes for those writing testcases and those
writing expect scripts.  At present, they're in random order.

Verbosity Levels

- each level adds verbosity so level 2 prints all level 1 and level 2 stuff.

1) Print a one-liner indicating the testcase being run (and maybe special
   compiler options).

2) Print compiler and program invocation including arguments and their output.
   Proc's gcc_load and gcc_start handle the latter two.

3) Print detailed testcase analysis like "Looking for pattern ...", etc.

4) Maximum verbosity.  Print anything else of interest.

send_log conventions

Various messages are stored in gcc.log by the testing framework and we
try to augment them with some of our own.  The format of the framework
messages are:

PASS: blah blah ...
FAIL: blah blah ...

so we use

XXXX: blah blah ...

Current messages are:

EXEC: program being executed (so compiler path and args are recorded)
STAT: intermediate pass/fail statistics

DO NOT PUT NON-PORTABLE TESTCASES IN gcc.c-torture.

ANY TARGET SPECIFIC TESTCASE MUST HAVE APPROPRIATE CODE TO PREVENT IT FROM
CAUSING A `FAILURE' ON UNSUPPORTED PLATFORMS.

Test scripts must ignore the compiler messages "path prefix never used"
and "linker input file unused".  Don't let their appearance cause a testcase
to fail.  See lib/dg.exp for the exact regsub to use.

If you're unclear about which directory a testcase should be installed in,
ask gcc-local.

Always use abort() for runtime failures, and exit(0) for success.
The testing harness is set up to watch for these and do something appropriate
(when necessary) for target boards.

Have the text of a fail message be the same as that for pass.
IE: have

        if ...success...
                pass "pr 1234"
        else
                fail "pr 1234"

not

        if ...success...
                pass "pr 1234 passed"
        else
                fail "pr 1234 failed"


This lets test-tool (which drives the nightly tests) do a better job
at tracking which tests have digressed or been fixed.

Add more notes here.