Re: [PHP-DEV] PATCH: run-tests.php -l flag (local / non-recurisve)

2004-02-20 Thread Daniel Convissor
On Fri, Feb 20, 2004 at 07:13:51PM +0100, Derick Rethans wrote: > TESTS=path/test/dir/*.phpt make test > so you don't need anything new for this to work. True enough. Thanks, --Dan -- T H E A N A L Y S I S A N D S O L U T I O N S C O M P A N Y data intensive web and databa

Re: [PHP-DEV] PATCH: run-tests.php -l flag (local / non-recurisve)

2004-02-20 Thread Derick Rethans
On Fri, 20 Feb 2004, Jan Lehnardt wrote: > Hi, > On 19 Feb 2004, at 22:50, Daniel Convissor wrote: > > As you probably know, run-tests.php runs recursively through each > > subdirectory encountered. I've run into circumstances where it is > > helpful > > to have it just run files in the present d

Re: [PHP-DEV] PATCH: run-tests.php -l flag (local / non-recurisve)

2004-02-20 Thread Marcus Boerger
Hello Daniel, since there seems to be a usage i looked into including it. Unfortunatley your patch doesn't help me. I'd need you to look into php5's version of the script. There you'll see that the switch 'l' is already being used. Hence i'd say we go with 'L' unless you find a better name. Frida

Re: [PHP-DEV] PATCH: run-tests.php -l flag (local / non-recurisve)

2004-02-20 Thread Marcus Boerger
Hello Daniel, Friday, February 20, 2004, 6:54:19 PM, you wrote: > Hi Marcus: > On Fri, Feb 20, 2004 at 06:40:22PM +0100, Marcus Boerger wrote: >> >> Anyway i see no reason because at least until >> now there is not a single one extension where this functionality would be of >> any use because t

Re: [PHP-DEV] PATCH: run-tests.php -l flag (local / non-recurisve)

2004-02-20 Thread Daniel Convissor
Hi Marcus: On Fri, Feb 20, 2004 at 06:40:22PM +0100, Marcus Boerger wrote: > > Anyway i see no reason because at least until > now there is not a single one extension where this functionality would be of > any use because test directories do not have sub-test-dirs. The test platform is used in m

Re: [PHP-DEV] PATCH: run-tests.php -l flag (local / non-recurisve)

2004-02-20 Thread Hartmut Holzgraefe
Marcus Boerger wrote: well i did some of those commits...long ago...or did i miss anything?? i was refering to stuff hidden somewhere on my disk .. i'd simply use php run-tests.php if you want local files only without recursion then you can use find but that doesn't help on windows. Anyw

Re: [PHP-DEV] PATCH: run-tests.php -l flag (local / non-recurisve)

2004-02-20 Thread Marcus Boerger
Hello Hartmut, Friday, February 20, 2004, 12:49:32 PM, you wrote: > Jan Lehnardt wrote: >> TESTS=/path/test/dir make test or even TESTS=/path/to/test.phpt make test >> works just fine, already. > TESTS=/path/test/dir would still dive into /past/test/dir/subdir, > wouldn't it? >> There are plans

Re: [PHP-DEV] PATCH: run-tests.php -l flag (local / non-recurisve)

2004-02-20 Thread Hartmut Holzgraefe
Jan Lehnardt wrote: TESTS=/path/test/dir make test or even TESTS=/path/to/test.phpt make test works just fine, already. TESTS=/path/test/dir would still dive into /past/test/dir/subdir, wouldn't it? There are plans to change run-tests.php so it accepts arguments instead of environment variables, bu

Re: [PHP-DEV] PATCH: run-tests.php -l flag (local / non-recurisve)

2004-02-20 Thread Jan Lehnardt
Hi, On 19 Feb 2004, at 22:50, Daniel Convissor wrote: As you probably know, run-tests.php runs recursively through each subdirectory encountered. I've run into circumstances where it is helpful to have it just run files in the present directory, without recursion. I have created a patch which w

[PHP-DEV] PATCH: run-tests.php -l flag (local / non-recurisve)

2004-02-19 Thread Daniel Convissor
Hi: As you probably know, run-tests.php runs recursively through each subdirectory encountered. I've run into circumstances where it is helpful to have it just run files in the present directory, without recursion. I have created a patch which watches for an "-l" flag. The -l flag is similar