From 16897354bcbb2afbc81d0d985a940dbe37cac986 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Thu, 1 Nov 2007 00:36:55 +0000 Subject: Added test case 1013 to check that curl-config --protocols matches the protocols listed in curl --version --- tests/libtest/test1013.pl | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 tests/libtest/test1013.pl (limited to 'tests/libtest/test1013.pl') diff --git a/tests/libtest/test1013.pl b/tests/libtest/test1013.pl new file mode 100755 index 000000000..8e5c7368e --- /dev/null +++ b/tests/libtest/test1013.pl @@ -0,0 +1,41 @@ +#!/usr/bin/env perl +# Determine if curl-config --protocols matches the curl --version protocols +if ( $#ARGV != 1 ) +{ + print "Usage: $0 curl-config-script curl-features-file\n"; + exit 3; +} + +my $curl_protocols=""; +open(CURL, "@ARGV[1]") || die "Can't get curl protocols list\n"; +while( ) +{ + $curl_protocols = $_ if ( /Protocols:/ ); +} +close CURL; + +$curl_protocols =~ /Protocols: (.*)$/; +@curl = split / /,$1; +@curl = sort @curl; + +my @curl_config; +open(CURLCONFIG, "sh @ARGV[0] --protocols|") || die "Can't get curl-config protocols list\n"; +while( ) +{ + chomp; + push @curl_config, lc($_); +} +close CURLCONFIG; + +@curl_config = sort @curl_config; + +my $curlproto = join ' ', @curl; +my $curlconfigproto = join ' ', @curl_config; + +my $different = $curlproto ne $curlconfigproto; +if ($different) { + print "Mismatch in protocol lists:\n"; + print "curl: $curlproto\n"; + print "curl-config: $curlconfigproto\n"; +} +exit $different; -- cgit v1.2.3