Re: [PHP-DEV] Re: multi-threaded run-tests.php

2007-07-31 Thread Marcus Boerger
Hello Richard, that -h issue is actually understandable. If run-tests-pgp was exectuable you would more likely be tempted to try -h. Maybe that means we should make it so by adding a hash bang line or by adding a short shell script that will do so call run-tests.pgp with the correct php

Re: [PHP-DEV] Re: multi-threaded run-tests.php

2007-07-30 Thread Marcus Boerger
Hello Richard, erm, php run-tests.php -h or --help was to hard? Friday, July 27, 2007, 5:56:10 AM, you wrote: On Wed, July 25, 2007 12:38 pm, Andrey Hristov wrote: Hi Tony, Antony Dovgal wrote: On 25.07.2007 19:37, Nuno Lopes wrote: So here it is my first attempt:

Re: [PHP-DEV] Re: multi-threaded run-tests.php

2007-07-27 Thread Sebastian Bergmann
Rasmus Lerdorf wrote: make test TESTS=ext/foo Or, add this little shell script which I call phpt: #!/bin/bash TEST_PHP_EXECUTABLE=/usr/local/bin/php php /usr/local/lib/php/build/run-tests.php $1 Then cd into whatever directory has your tests and type: phpt . Yeah, letting make

[PHP-DEV] Re: multi-threaded run-tests.php

2007-07-25 Thread Nuno Lopes
So here it is my first attempt: http://gcov.php.net/~nlopess/multi_threaded_run_tests.txt WARNING: The patch is ugly and the output of the script isn't the prettiest. Anyway, for automated testing seems to be good enough. Nuno P.S.: after this little hack, I also start to feel that

Re: [PHP-DEV] Re: multi-threaded run-tests.php

2007-07-25 Thread Richard Quadling
On 25/07/07, Nuno Lopes [EMAIL PROTECTED] wrote: So here it is my first attempt: http://gcov.php.net/~nlopess/multi_threaded_run_tests.txt WARNING: The patch is ugly and the output of the script isn't the prettiest. Anyway, for automated testing seems to be good enough. Nuno P.S.: after this

Re: [PHP-DEV] Re: multi-threaded run-tests.php

2007-07-25 Thread Antony Dovgal
On 25.07.2007 19:37, Nuno Lopes wrote: So here it is my first attempt: http://gcov.php.net/~nlopess/multi_threaded_run_tests.txt WARNING: The patch is ugly and the output of the script isn't the prettiest. Anyway, for automated testing seems to be good enough. Nuno P.S.: after this little

Re: [PHP-DEV] Re: multi-threaded run-tests.php

2007-07-25 Thread Andrey Hristov
Hi Tony, Antony Dovgal wrote: On 25.07.2007 19:37, Nuno Lopes wrote: So here it is my first attempt: http://gcov.php.net/~nlopess/multi_threaded_run_tests.txt WARNING: The patch is ugly and the output of the script isn't the prettiest. Anyway, for automated testing seems to be good enough.