From 92696ab6bd2c64c614866c4c1c3df68130ae90a3 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 12 Mar 2021 08:44:06 +0100 Subject: fixup manpage-scan.pl to work with more quotes --- tests/manpage-scan.pl | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/tests/manpage-scan.pl b/tests/manpage-scan.pl index 78ceddd7e..ec2e7253d 100755 --- a/tests/manpage-scan.pl +++ b/tests/manpage-scan.pl @@ -6,7 +6,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 2016 - 2020, Daniel Stenberg, , et al. +# Copyright (C) 2016 - 2021, Daniel Stenberg, , et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -66,12 +66,19 @@ sub scanmanpage { my ($file, @words) = @_; open(M, "<$file"); - my @m = ; + my @m; + while() { + if($_ =~ /^\.IP (.*)/) { + my $w = $1; + # "unquote" minuses + $w =~ s/\\-/-/g; + push @m, $w; + } + } close(M); foreach my $m (@words) { - - my @g = grep(/^\.IP $m/, @m); + my @g = grep(/$m/, @m); if(!$g[0]) { print STDERR "Missing mention of $m in $file\n"; $errors++; @@ -206,7 +213,8 @@ my @manpage; # store all parsed parameters while() { chomp; my $l= $_; - if(/^\.IP \"(-[^\"]*)\"/) { + $l =~ s/\\-/-/g; + if($l =~ /^\.IP \"(-[^\"]*)\"/) { my $str = $1; my $combo; if($str =~ /^-(.), --([a-z0-9.-]*)/) { -- cgit v1.2.1