build: allow NTLM tests to run on more build configurations

This commit is contained in:
U-D5B1PQ1J\Administrador
2010-08-07 14:33:14 +02:00
parent 5c2b6b2d3e
commit 7d342c723c
6 changed files with 72 additions and 42 deletions

View File

@@ -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";