Re: Problem Autotesting executables

2006-01-10 Thread Ralf Wildenhues
[ Cc:ed the list again ] Hi Nathaniel, * Nathaniel D. Sizemore wrote on Tue, Jan 10, 2006 at 06:48:16PM CET: > On Jan 10, 2006, at 2:07 AM, Ralf Wildenhues wrote: > > > >Show testsuite.log. Something else must be going on. > > See below. The executable formally known as 'foo' is vorpal -- >

Re: Problem Autotesting executables

2006-01-10 Thread Ralf Wildenhues
Hi Nathaniel, * Nathaniel D. Sizemore wrote on Tue, Jan 10, 2006 at 01:34:28AM CET: > I've a project using Autotest to, well, test executables. :-) My > testsuite.at file looks like the following: > > m4_define([AT_CHECK_FOO], [ > AT_SETUP() > AT_CHECK([foo], [], [stdout]) > AT_CLEANUP() > ])

Problem Autotesting executables

2006-01-09 Thread Nathaniel D. Sizemore
I've a project using Autotest to, well, test executables. :-) My testsuite.at file looks like the following: m4_define([AT_CHECK_FOO], [ AT_SETUP() AT_CHECK([foo], [], [stdout]) AT_CLEANUP() ]) AT_CHECK_FOO() In the example above, foo is an executable that returns 0 on success. However, w