summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-03-16 18:57:34 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-03-16 18:57:34 (GMT)
commita69ea53ed8791ea971c630164afbe88f07557294 (patch)
tree9172a55deb0ddf87ffde202aa55c740cd9d9d632
parentccf2663f9ae149a30b51e106d82da3978e0a7398 (diff)
parentf5efa2f383fe89b53bd8fc27b2116e8636417ebf (diff)
downloadDoxygen-a69ea53ed8791ea971c630164afbe88f07557294.zip
Doxygen-a69ea53ed8791ea971c630164afbe88f07557294.tar.gz
Doxygen-a69ea53ed8791ea971c630164afbe88f07557294.tar.bz2
Merge pull request #308 from groleo/master
runtests.pl: mnn version has dash as separator
-rwxr-xr-xtesting/runtests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/runtests.pl b/testing/runtests.pl
index 30fe969..0e1938d 100755
--- a/testing/runtests.pl
+++ b/testing/runtests.pl
@@ -81,7 +81,7 @@ sub compare_ok {
sub chop_volatile {
my $line = shift;
- $line =~ s/version="\d\.\d+\.\d+(\.\d+)?"/version=""/g; # strip version
+ $line =~ s/version="\d\.\d+\.\d+(\.\d+)?(\-\d+)?"/version=""/g; # strip version
$line =~ s/file=".*\/(.*)"/file="$1"/g; # strip location
return $line;
}