aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorU-D5B1PQ1J\Administrador <Administrador@D5B1PQ1J.(none)>2010-08-07 14:33:14 +0200
committerU-D5B1PQ1J\Administrador <Administrador@D5B1PQ1J.(none)>2010-08-07 15:03:54 +0200
commit7d342c723c5ae8e9312210936287810741f40bc5 (patch)
treea9870c912e8a2dbfd8bdc8aa223057b0f02822a4 /tests/runtests.pl
parent5c2b6b2d3e60500bb6b47b57cfe4e65c2ba03751 (diff)
build: allow NTLM tests to run on more build configurations
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 8bb5d69e9..a97d8647e 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -2376,8 +2376,9 @@ sub singletest {
delete $ENV{$var} if($ENV{$var});
}
else {
- if(($has_shared ne "yes") && ($var =~ /^LD_PRELOAD/)) {
- # print "Skipping LD_PRELOAD due to no shared build\n";
+ if(($var =~ /^LD_PRELOAD/) &&
+ ($debug_build || ($has_shared ne "yes"))) {
+ # print "Skipping LD_PRELOAD due to no release shared build\n";
next;
}
$ENV{$var} = "$content";