mirror of
https://github.com/curl/curl.git
synced 2026-01-27 01:44:17 +00:00
By introducing wrappers for them in the curlx namespace: `curlx_fopen()`, `curlx_fdopen()`, `curlx_fclose()`. The undefine/redefine/`(function)()` methods broke on systems implementing these functions as macros. E.g. AIX 32-bit's `fopen()`. Also: - rename `lib/fopen.*` to `lib/curl_fopen.*` (for `Curl_fopen()`) to make room for the newly added `curlx/fopen.h`. - curlx: move file-related functions from `multibyte.c` to `fopen.c`. - tests/server: stop using the curl-specific `fopen()` implementation on Windows. Unicode isn't used by runtests, and it isn't critical to run tests on longs path. It can be re-enabled if this becomes necessary, or if the wrapper receives a feature that's critical for test servers. Reported-by: Andrew Kirillov Bug: https://github.com/curl/curl/issues/18510#issuecomment-3274393640 Follow-up to bf7375ecc50e857760b0d0a668c436e208a400bd #18503 Follow-up to 9863599d69b79d290928a89bf9160f4e4e023d4e #18502 Follow-up to 3bb5e58c105d7be450b667858d1b8e7ae3ded555 #17827 Closes #18634
105 lines
2.8 KiB
Perl
Executable File
105 lines
2.8 KiB
Perl
Executable File
#!/usr/bin/env perl
|
|
#***************************************************************************
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# This software is licensed as described in the file COPYING, which
|
|
# you should have received as part of this distribution. The terms
|
|
# are also available at https://curl.se/docs/copyright.html.
|
|
#
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
#
|
|
###########################################################################
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
my @files = @ARGV;
|
|
my $cfile = "test.c";
|
|
my $check = "./scripts/checksrc.pl";
|
|
my $error = 0;
|
|
|
|
if(!@files || $files[0] eq "-h") {
|
|
print "Usage: verify-examples [markdown pages]\n";
|
|
exit;
|
|
}
|
|
|
|
sub testcompile {
|
|
my $rc = system("gcc -c test.c -DCURL_ALLOW_OLD_MULTI_SOCKET -DCURL_DISABLE_DEPRECATION -Wunused -Werror -Wall -Wno-unused-but-set-variable -I include") >> 8;
|
|
return $rc;
|
|
}
|
|
|
|
sub checksrc {
|
|
my $rc = system("$check test.c") >> 8;
|
|
return $rc;
|
|
}
|
|
|
|
sub extract {
|
|
my($f) = @_;
|
|
my $syn = 0;
|
|
my $l = 0;
|
|
my $iline = 0;
|
|
my $fail = 0;
|
|
open(F, "<$f") or die "failed opening input file $f : $!";
|
|
open(O, ">$cfile") or die "failed opening output file $cfile : $!";
|
|
print O "#include <curl/curl.h>\n";
|
|
while(<F>) {
|
|
$iline++;
|
|
if(/^# EXAMPLE/) {
|
|
$syn = 1
|
|
}
|
|
elsif($syn == 1) {
|
|
if(/^~~~/) {
|
|
$syn++;
|
|
print O "/* !checksrc! disable BANNEDFUNC all */\n"; # for fopen()
|
|
print O "/* !checksrc! disable COPYRIGHT all */\n";
|
|
print O "/* !checksrc! disable UNUSEDIGNORE all */\n";
|
|
printf O "#line %d \"$f\"\n", $iline+1;
|
|
}
|
|
}
|
|
elsif($syn == 2) {
|
|
if(/^~~~/) {
|
|
last;
|
|
}
|
|
# two backslashes become one
|
|
$_ =~ s/\\\\/\\/g;
|
|
print O $_;
|
|
$l++;
|
|
}
|
|
}
|
|
close(F);
|
|
close(O);
|
|
|
|
return ($fail ? 0 : $l);
|
|
}
|
|
|
|
my $count = 0;
|
|
for my $m (@files) {
|
|
#print "Verify $m\n";
|
|
my $out = extract($m);
|
|
if($out) {
|
|
$error |= testcompile($m);
|
|
$error |= checksrc($m);
|
|
}
|
|
$count++;
|
|
}
|
|
if(!$error) {
|
|
print "Verified $count man pages ok\n";
|
|
}
|
|
else {
|
|
print "Detected problems\n";
|
|
}
|
|
exit $error;
|