Re: how to change the behaviour of make check?

2003-09-19 Thread Ireneusz SZCZESNIAK
Hi, On Wed, 17 Sep 2003, Raja R Harinath wrote: That seems a roundabout way to do it. Just copy the check-TESTS rule into your Makefile.am file, and automake won't generate its internal rule. You can customize your local copy of check-TESTS to your heart's content. Yes! This works

Re: how to change the behaviour of make check?

2003-09-17 Thread Ireneusz SZCZESNIAK
Hi, Thanks for your e-mail. bernd It should if you say make -k check. make -k check only partially works for me. The -k option causes make to ignore all errors and therefore continue with recursive execution -- in this way it does what I want. But I only want make to ignore errors from

Re: how to change the behaviour of make check?

2003-09-17 Thread Thien-Thi Nguyen
Ireneusz SZCZESNIAK [EMAIL PROTECTED] writes: But I only want make to ignore errors from running tests, not all errors. My test scripts are automatically generated by make and then run. If make fails to generate such a script, then I want make to report the error and stop. there is

Re: how to change the behaviour of make check?

2003-09-17 Thread Eric Siegerman
On Wed, Sep 17, 2003 at 11:28:44AM -0600, Ireneusz SZCZESNIAK wrote: But I only want make to ignore errors from running tests, not all errors. Try something like: make make -k check The first one builds, and dies on any error. The second one, which only runs if the first one

Re: how to change the behaviour of make check?

2003-09-17 Thread Thien-Thi Nguyen
Date: Wed, 17 Sep 2003 14:07:17 -0600 (MDT) From: Ireneusz SZCZESNIAK [EMAIL PROTECTED] Yeah! But still I want the output of make check to be clean. When a test fails, then I expect to see: FAIL: test.sh. in this case the only thing i can suggest is to post-process the Makefile to

Re: how to change the behaviour of make check?

2003-09-17 Thread Ireneusz SZCZESNIAK
Hi, Thanks for your e-mail! On Wed, 17 Sep 2003, Steve M. Robbins wrote: But I only want make to ignore errors from running tests, not all errors. My test scripts are automatically generated by make and then run. If make fails to generate such a script, then I want make to report the

Re: how to change the behaviour of make check?

2003-09-17 Thread Ireneusz SZCZESNIAK
Hi, On Wed, 17 Sep 2003, Thien-Thi Nguyen wrote: Date: Wed, 17 Sep 2003 14:07:17 -0600 (MDT) From: Ireneusz SZCZESNIAK [EMAIL PROTECTED] Yeah! But still I want the output of make check to be clean. When a test fails, then I expect to see: FAIL: test.sh. in this case the only

Re: how to change the behaviour of make check?

2003-09-17 Thread Ireneusz SZCZESNIAK
Hi, On Wed, 17 Sep 2003, Steve M. Robbins wrote: I should have written: My test scripts are automatically generated by the Make software (not the make command) and then run. Actually, the scripts are both generated and run by make check. OK. But you can have them generated by make, if you

Re: how to change the behaviour of make check?

2003-09-17 Thread Raja R Harinath
Hi, Thien-Thi Nguyen [EMAIL PROTECTED] writes: Date: Wed, 17 Sep 2003 14:07:17 -0600 (MDT) From: Ireneusz SZCZESNIAK [EMAIL PROTECTED] Yeah! But still I want the output of make check to be clean. When a test fails, then I expect to see: FAIL: test.sh. in this case the only