]> granicus.if.org Git - curl/commitdiff
Fixed test 1023 when using daily snapshots
authorDan Fandrich <dan@coneharvesters.com>
Thu, 21 Apr 2011 21:47:35 +0000 (14:47 -0700)
committerDan Fandrich <dan@coneharvesters.com>
Thu, 21 Apr 2011 21:47:35 +0000 (14:47 -0700)
tests/libtest/test1022.pl

index bd777a5e8f1bd973d682d9b2e85b14e7b5ffc32e..377808c7347d54ef3f840da158e4a2239ea329fe 100755 (executable)
@@ -31,7 +31,7 @@ if ( $what eq "version" ) {
         $curlconfigversion = "illegal value";
     }
 }
-else {
+else { # "vernum" case
     # Convert hex version to decimal for comparison's sake
     if($filever =~ /^(..)(..)(..)$/) {
         $curlconfigversion = hex($1) . "." . hex($2) . "." . hex($3);
@@ -41,7 +41,7 @@ else {
     }
 
     # Strip off the -DEV from the curl version if it's there
-    $version =~ s/-DEV$//;
+    $version =~ s/-\w*$//;
 }
 close CURLCONFIG;