Git init
[external/curl.git] / tests / libtest / test1022.pl
1 #!/usr/bin/env perl
2 # Determine if curl-config --version matches the curl --version
3 if ( $#ARGV != 2 )
4 {
5     print "Usage: $0 curl-config-script curl-version-output-file version|vernum\n";
6     exit 3;
7 }
8
9 my $what=$ARGV[2];
10
11 # Read the output of curl --version
12 open(CURL, "$ARGV[1]") || die "Can't open curl --version list in $ARGV[1]\n";
13 $_ = <CURL>;
14 chomp;
15 /libcurl\/([\.\d]+(-DEV)?)/;
16 my $version = $1;
17 close CURL;
18
19 my $curlconfigversion;
20
21 # Read the output of curl-config --version/--vernum
22 open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config --$what list\n";
23 $_ = <CURLCONFIG>;
24 chomp;
25 if ( $what eq "version" ) {
26     /^libcurl ([\.\d]+(-DEV)?)$/ ;
27     $curlconfigversion = $1;
28 }
29 else {
30     # Convert hex version to decimal for comparison's sake
31     /^(..)(..)(..)$/ ;
32     $curlconfigversion = hex($1) . "." . hex($2) . "." . hex($3);
33
34     # Strip off the -DEV from the curl version if it's there
35     $version =~ s/-DEV$//;
36 }
37 close CURLCONFIG;
38
39 my $different = $version ne $curlconfigversion;
40 if ($different || !$version) {
41     print "Mismatch in --version:\n";
42     print "curl:        $version\n";
43     print "curl-config: $curlconfigversion\n";
44     exit 1;
45 }