CVS commit: src/external/bsd/atf/dist/atf-sh

2023-05-10 Thread David H. Gutteridge
Module Name:src Committed By: gutteridge Date: Wed May 10 22:14:54 UTC 2023 Modified Files: src/external/bsd/atf/dist/atf-sh: atf-check.1 atf-sh.1 Log Message: atf-check.1 & atf-sh.1: remove references to -h option These had their -h option removed in the ATF 0.19 release

CVS commit: src/external/bsd/atf/dist/atf-sh

2023-05-10 Thread David H. Gutteridge
Module Name:src Committed By: gutteridge Date: Wed May 10 22:14:54 UTC 2023 Modified Files: src/external/bsd/atf/dist/atf-sh: atf-check.1 atf-sh.1 Log Message: atf-check.1 & atf-sh.1: remove references to -h option These had their -h option removed in the ATF 0.19 release

CVS commit: src/external/bsd/atf/dist/atf-sh

2019-10-04 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Oct 4 09:19:19 UTC 2019 Modified Files: src/external/bsd/atf/dist/atf-sh: atf-check.cpp Log Message: give a catch() a variable. gcc 8 is picky: atf-check.cpp:221:23: error: catching polymorphic type 'class std::runtime_error'

CVS commit: src/external/bsd/atf/dist/atf-sh

2019-10-04 Thread matthew green
Module Name:src Committed By: mrg Date: Fri Oct 4 09:19:19 UTC 2019 Modified Files: src/external/bsd/atf/dist/atf-sh: atf-check.cpp Log Message: give a catch() a variable. gcc 8 is picky: atf-check.cpp:221:23: error: catching polymorphic type 'class std::runtime_error'

Re: CVS commit: src/external/bsd/atf/dist/atf-sh

2010-11-26 Thread Nicolas Joly
On Fri, Nov 26, 2010 at 12:04:36PM +, Antti Kantee wrote: > Module Name: src > Committed By: pooka > Date: Fri Nov 26 12:04:36 UTC 2010 > > Modified Files: > src/external/bsd/atf/dist/atf-sh: atf-check.cpp > > Log Message: > Remove spammy (debug?) prints. took ages to figure o

Re: CVS commit: src/external/bsd/atf/dist/atf-sh

2014-01-10 Thread Julio Merino
On Fri, Jan 10, 2014 at 1:39 AM, Christos Zoulas wrote: > Module Name:src > Committed By: christos > Date: Fri Jan 10 01:39:32 UTC 2014 > > Modified Files: > src/external/bsd/atf/dist/atf-sh: libatf-sh.subr > > Log Message: > Undo previous; unfortunately the cleanup routine

Re: CVS commit: src/external/bsd/atf/dist/atf-sh

2014-01-10 Thread Christos Zoulas
In article , Julio Merino wrote: >On Fri, Jan 10, 2014 at 1:39 AM, Christos Zoulas wrote: >> Module Name:src >> Committed By: christos >> Date: Fri Jan 10 01:39:32 UTC 2014 >> >> Modified Files: >> src/external/bsd/atf/dist/atf-sh: libatf-sh.subr >> >> Log Message: >> Und

Re: CVS commit: src/external/bsd/atf/dist/atf-sh

2014-01-10 Thread Martin Husemann
On Fri, Jan 10, 2014 at 06:31:57PM +, Christos Zoulas wrote: > If I need to pass state between the body of the test function and > the cleanup function, where do I put that state? Create a temporary file in . - this will be a private directory for this test case when run from atf-run. Martin

Re: CVS commit: src/external/bsd/atf/dist/atf-sh

2014-01-11 Thread Julio Merino
On Fri, Jan 10, 2014 at 7:31 PM, Christos Zoulas wrote: > I would have preferred that the cleanup functionality was implemented > differently, running in the context of the shell that ran the test. > This could have been done by issuing a 'trap test_cleanup 0' before > invoking the test, instead o

Re: CVS commit: src/external/bsd/atf/dist/atf-sh

2014-01-11 Thread Christos Zoulas
On Jan 11, 9:05am, ju...@meroh.net (Julio Merino) wrote: -- Subject: Re: CVS commit: src/external/bsd/atf/dist/atf-sh | The reason it works like it does is because atf-run takes care of most | cleanup by itself and runs every test case on its own subprocess. | | The cleanup routine supports