mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-27 00:15:45 +01:00
Fix check-doxy-blocks.pl to run from root dir
Modify tests/scripts/check-doxy-blocks.pl to ensure that: * It can only be run from the mbed TLS root directory. * An error code is returned to the environment when a potential error in the source code is found.
This commit is contained in:
parent
63a48d10e9
commit
d8fcfe7850
@ -19,6 +19,10 @@ my @directories = qw(include/mbedtls library doxygen/input);
|
|||||||
# everything with a backslach except '\0' and backslash at EOL
|
# everything with a backslach except '\0' and backslash at EOL
|
||||||
my $doxy_re = qr/\\(?!0|\n)/;
|
my $doxy_re = qr/\\(?!0|\n)/;
|
||||||
|
|
||||||
|
# Return an error code to the environment if a potential error in the
|
||||||
|
# source code is found.
|
||||||
|
my $exit_code = 0;
|
||||||
|
|
||||||
sub check_file {
|
sub check_file {
|
||||||
my ($fname) = @_;
|
my ($fname) = @_;
|
||||||
open my $fh, '<', $fname or die "Failed to open '$fname': $!\n";
|
open my $fh, '<', $fname or die "Failed to open '$fname': $!\n";
|
||||||
@ -32,6 +36,7 @@ sub check_file {
|
|||||||
if ($block_start and $line =~ m/$doxy_re/) {
|
if ($block_start and $line =~ m/$doxy_re/) {
|
||||||
print "$fname:$block_start: directive on line $.\n";
|
print "$fname:$block_start: directive on line $.\n";
|
||||||
$block_start = 0; # report only one directive per block
|
$block_start = 0; # report only one directive per block
|
||||||
|
$exit_code = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,13 +50,15 @@ sub check_dir {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# locate root directory based on invocation name
|
# Check that the script is being run from the project's root directory.
|
||||||
my $root = dirname($0) . '/..';
|
|
||||||
chdir $root or die "Can't chdir to '$root': $!\n";
|
|
||||||
|
|
||||||
# just do it
|
|
||||||
for my $dir (@directories) {
|
for my $dir (@directories) {
|
||||||
|
if (! -d $dir) {
|
||||||
|
die "This script must be run from the mbed TLS root directory";
|
||||||
|
} else {
|
||||||
check_dir($dir)
|
check_dir($dir)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
exit $exit_code;
|
||||||
|
|
||||||
__END__
|
__END__
|
||||||
|
Loading…
Reference in New Issue
Block a user