Re: Background processes in GNU Autotest

2016-06-24 Thread Olaf Mandel
Hello Mike, Am 23.06.2016 um 07:19 schrieb Mike Frysinger: > On 22 Jun 2016 22:52, Olaf Mandel wrote: >> On 22.06.2016 21:12, Mike Frysinger wrote: -Snipp- >>> wouldn't you want the test itself to spin up/down the server as need >>> be ? that way you can write multiple end-to-end tests and have

Re: Background processes in GNU Autotest

2016-06-22 Thread Mike Frysinger
On 22 Jun 2016 22:52, Olaf Mandel wrote: > On 22.06.2016 21:12, Mike Frysinger wrote: > > On 22 Jun 2016 11:03, Olaf Mandel wrote: > >> I am trying to use GNU Autotest (via AX_GNU_AUTOTEST()) to run > >> end-to-end tests on a network server. [...] > >> > >> AT_CHECK([server&],, [ignore]) >

Re: Background processes in GNU Autotest

2016-06-22 Thread Olaf Mandel
Hello Mike, On 22.06.2016 21:12, Mike Frysinger wrote: > On 22 Jun 2016 11:03, Olaf Mandel wrote: >> I am trying to use GNU Autotest (via AX_GNU_AUTOTEST()) to run >> end-to-end tests on a network server. [...] >> >> AT_CHECK([server&],, [ignore]) >> AT_CHECK([client --cmd]), ,

Re: Background processes in GNU Autotest

2016-06-22 Thread Mike Frysinger
On 22 Jun 2016 11:03, Olaf Mandel wrote: > I am trying to use GNU Autotest (via AX_GNU_AUTOTEST()) to run > end-to-end tests on a network server. My current test script looks > somewhat like this: > > AT_CHECK([server&],, [ignore]) > AT_CHECK([client --cmd]), , [expected-output]) >