On Thu, Mar 10, 2011 at 12:31:57PM -0800, Mike Stump wrote: > On Mar 10, 2011, at 10:22 AM, Jakub Jelinek wrote: > > The standard way of signalizing a test failure is calling abort (), > > not returning 1, see http://gcc.gnu.org/codingconventions.html > > Actually, returning 0 or 1 is a perfectly fine way to signal pass/fail in the > testsuites, as it exit.
E.g. http://gcc.gnu.org/wiki/HowToPrepareATestcase recommends abort instead and it is existing practice too. Jakub