]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tests: move a boolean variable out of the path section
authorDan Fandrich <dan@coneharvesters.com>
Fri, 4 Apr 2025 15:42:43 +0000 (08:42 -0700)
committerDan Fandrich <dan@coneharvesters.com>
Fri, 4 Apr 2025 15:42:43 +0000 (08:42 -0700)
tests/globalconfig.pm

index da174e1b05cdf8fe8a18c5608f21fa51e6fd4694..5fb3dda7ad747de62eb0fb001591ccd45015f3f5 100644 (file)
@@ -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;