mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 15:48:49 -05:00
don't set TEST_F to blank when --runtestopts isn't used, as that will override
the default options set in the Makefile
This commit is contained in:
parent
67f04d2d5f
commit
e8ddf84871
@ -521,8 +521,12 @@ elsif(!$crosscompile) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($configurebuild && !$crosscompile) {
|
if ($configurebuild && !$crosscompile) {
|
||||||
logit "run make TEST_F=\"$runtestopts\" test-full";
|
my $o;
|
||||||
open(F, "make TEST_F=\"$runtestopts\" test-full 2>&1 |") or die;
|
if($runtestopts) {
|
||||||
|
$o = "TEST_F=\"$runtestopts\" ";
|
||||||
|
}
|
||||||
|
logit "run make ${o}test-full";
|
||||||
|
open(F, "make ${o}test-full 2>&1 |") or die;
|
||||||
open(LOG, ">$buildlog") or die;
|
open(LOG, ">$buildlog") or die;
|
||||||
while (<F>) {
|
while (<F>) {
|
||||||
s/$pwd//g;
|
s/$pwd//g;
|
||||||
|
Loading…
Reference in New Issue
Block a user