diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-10-19 11:50:08 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-10-19 12:01:00 +0200 |
commit | 4282d5f9d06a1e4c6f9b48f0075cbe959b8a000d (patch) | |
tree | 77d67557f9a3562cbf8c162c23a2f22be80ffe8d /tests | |
parent | eb97e2c798513bf45bcb40ef4e86c620b774f1d1 (diff) | |
download | curl-4282d5f9d06a1e4c6f9b48f0075cbe959b8a000d.tar.gz |
runtests: revert the mistaken edit of $CURL
Regression from c4693adc62
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index b962f1646..c83b833a9 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -167,7 +167,7 @@ my $VERSION; # curl's reported version number my $srcdir = $ENV{'srcdir'} || '.'; my $CURL="../src/curl".exe_ext('TOOL'); # what curl executable to run on the tests -my $VCURL="curl"; # what curl binary to use to verify the servers with +my $VCURL=$CURL; # what curl binary to use to verify the servers with # VCURL is handy to set to the system one when the one you # just built hangs or crashes and thus prevent verification my $DBGCURL=$CURL; #"../src/.libs/curl"; # alternative for debugging |