summaryrefslogtreecommitdiffstats
path: root/testing/runtests.pl
diff options
context:
space:
mode:
authorAdrian Negreanu <groleo@gmail.com>2015-03-09 20:38:41 (GMT)
committerAdrian Negreanu <groleo@gmail.com>2015-03-10 20:28:33 (GMT)
commitf5efa2f383fe89b53bd8fc27b2116e8636417ebf (patch)
treedac978b659b4527e80069adb7deec834d30c4c42 /testing/runtests.pl
parenteac0fd660bffe62ae29a190308bf21b21d49647b (diff)
downloadDoxygen-f5efa2f383fe89b53bd8fc27b2116e8636417ebf.zip
Doxygen-f5efa2f383fe89b53bd8fc27b2116e8636417ebf.tar.gz
Doxygen-f5efa2f383fe89b53bd8fc27b2116e8636417ebf.tar.bz2
runtests.pl: mmn version has dash as separator
Final version can be major.minor.revision-mmn Revision can either be x or x.y.
Diffstat (limited to 'testing/runtests.pl')
-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;
}