From b117d2cacfa604f591560f4504cc15c60dfa3780 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Fri, 4 Apr 2025 08:42:43 -0700 Subject: [PATCH] tests: move a boolean variable out of the path section --- tests/globalconfig.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.2