mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Call tests with executable name.
This commit is contained in:
parent
0dd8271f32
commit
cf4c155c0c
@ -1,3 +1,8 @@
|
|||||||
|
2008-11-06 Steven Schubiger <stsc@members.fsf.org>
|
||||||
|
|
||||||
|
* run-px: When executing test scripts, invoke them with the
|
||||||
|
current perl executable name as determined by env.
|
||||||
|
|
||||||
2008-11-06 Micah Cowan <micah@cowan.name>
|
2008-11-06 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
* run-px: Use strict (thanks Steven Schubiger!).
|
* run-px: Use strict (thanks Steven Schubiger!).
|
||||||
|
@ -52,7 +52,7 @@ my @results;
|
|||||||
|
|
||||||
for my $test (@tests) {
|
for my $test (@tests) {
|
||||||
print "Running $test\n\n";
|
print "Running $test\n\n";
|
||||||
system("$top_srcdir/tests/$test");
|
system("$^X $top_srcdir/tests/$test");
|
||||||
push @results, $?;
|
push @results, $?;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user