From: Dan Fandrich Date: Fri, 4 Apr 2025 15:42:43 +0000 (-0700) Subject: tests: move a boolean variable out of the path section X-Git-Tag: curl-8_14_0~365 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b117d2cacfa604f591560f4504cc15c60dfa3780;p=thirdparty%2Fcurl.git tests: move a boolean variable out of the path section --- diff --git a/tests/globalconfig.pm b/tests/globalconfig.pm index da174e1b05..5fb3dda7ad 100644 --- a/tests/globalconfig.pm +++ b/tests/globalconfig.pm @@ -121,7 +121,6 @@ our $VCURL=$CURL; # what curl binary to use to verify the servers with # the path to the script that analyzes the memory debug output file our $memanalyze="$perl " . shell_quote("$srcdir/memanalyze.pl"); our $valgrind; # path to valgrind, or empty if disabled -our $bundle = 0; # use bundled server, libtest, unit binaries our $dev_null = File::Spec->devnull(); # null device path, eg: /dev/null # paths in $LOGDIR @@ -135,7 +134,8 @@ our $SERVERCMD="server.cmd"; # copy server instructions here # other config variables our @protocols; # array of lowercase supported protocol servers our %feature; # hash of enabled features -our $has_shared; # built as a shared library our %keywords; # hash of keywords from the test spec +our $has_shared; # built as a shared library +our $bundle = 0; # use bundled server, libtest, unit binaries 1;