summaryrefslogtreecommitdiff
path: root/tests/manpage-scan.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manpage-scan.pl')
-rw-r--r--tests/manpage-scan.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/manpage-scan.pl b/tests/manpage-scan.pl
index a9d960727..62eaebea1 100644
--- a/tests/manpage-scan.pl
+++ b/tests/manpage-scan.pl
@@ -126,9 +126,9 @@ while(<R>) {
}
close(R);
-scanmanpage("$root/docs/libcurl/curl_easy_setopt.3", @curlopt);
-scanmanpage("$root/docs/libcurl/curl_easy_getinfo.3", @curlinfo);
-scanmanpage("$root/docs/libcurl/curl_multi_setopt.3", @curlmopt);
+scanmanpage("$root/docs/libcurl/gnurl_easy_setopt.3", @curlopt);
+scanmanpage("$root/docs/libcurl/gnurl_easy_getinfo.3", @curlinfo);
+scanmanpage("$root/docs/libcurl/gnurl_multi_setopt.3", @curlmopt);
# using this hash array, we can whitelist specific options
my %opts = (
@@ -198,7 +198,7 @@ close(R);
#########################################################################
# parse the curl.1 man page, extract all documented command line options
# The man page may or may not be rebuilt, so check both possible locations
-open(R, "<$buildroot/docs/curl.1") || open(R, "<$root/docs/curl.1") ||
+open(R, "<$buildroot/docs/gnurl.1") || open(R, "<$root/docs/gnurl.1") ||
die "no input file";
my @manpage; # store all parsed parameters
while(<R>) {
@@ -270,10 +270,10 @@ foreach my $o (keys %opts) {
$missing=" tool_getparam.c";
}
if($where & 2) {
- $exists.= " curl.1";
+ $exists.= " gnurl.1";
}
else {
- $missing.= " curl.1";
+ $missing.= " gnurl.1";
}
if($where & 4) {
$exists .= " tool_help.c";