aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2014-02-17 09:14:44 +0100
committerDan Fandrich <dan@coneharvesters.com>2014-02-17 09:50:46 +0100
commit4b4e8a5853dbda897fad0321b2cbebfb36dfe012 (patch)
tree28fb61038b25016bf75e0543db06fdb5aa63bc5a /tests/runtests.pl
parent184c3e2d3767ed06c3d2f995a4b98e4ce2c7548f (diff)
tests: Made the crypto test feature usable
This feature specifies the availability of cryptographic authentication, which can be disabled at compile-time
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 8a47d5853..cbd40e7d9 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -2403,6 +2403,8 @@ sub checksystem {
if($feat =~ /NTLM/i) {
# NTLM enabled
$has_ntlm=1;
+ # Use this as a proxy for any cryptographic authentication
+ $has_crypto=1;
}
if($feat =~ /NTLM_WB/i) {
# NTLM delegation to winbind daemon ntlm_auth helper enabled
@@ -2513,10 +2515,6 @@ sub checksystem {
$has_shared = `sh $CURLCONFIG --built-shared`;
chomp $has_shared;
- # curl doesn't list cryptographic support separately, so assume it's
- # always available
- $has_crypto=1;
-
my $hostname=join(' ', runclientoutput("hostname"));
my $hosttype=join(' ', runclientoutput("uname -a"));