diff options
author | Adrian Negreanu <groleo@gmail.com> | 2015-03-09 20:38:41 (GMT) |
---|---|---|
committer | Adrian Negreanu <groleo@gmail.com> | 2015-03-10 20:28:33 (GMT) |
commit | f5efa2f383fe89b53bd8fc27b2116e8636417ebf (patch) | |
tree | dac978b659b4527e80069adb7deec834d30c4c42 | |
parent | eac0fd660bffe62ae29a190308bf21b21d49647b (diff) | |
download | Doxygen-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.
-rwxr-xr-x | testing/runtests.pl | 2 |
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; } |