mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 06:38:24 +00:00
468a76f88a
To find any files with a missing copyright declaration, use the following script: # ======================== #!/bin/sh # Find files with copyright declarations, and list their file extensions exts=$(grep -Ril --exclude-dir .git 'Copyright.*Arm' | sed ' s/.*\./-name "*./ s/$/"/ ' | sort -u | sed -n ' :l N $!bl s/\n/ -o /gp ') # Find files with file extensions that ususally include copyright extensions, but don't include a copyright declaration themselves. eval "find -path './.git' -prune -o ! -path './tests/data_files/format_pkcs12.fmt' '(' $exts ')' -print" | xargs grep -Li 'Copyright.*Arm' # ======================== Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
39 lines
924 B
Perl
Executable file
39 lines
924 B
Perl
Executable file
#!/usr/bin/env perl
|
|
#
|
|
# Copyright (C) 2017, Arm Limited, All Rights Reserved
|
|
#
|
|
# This file is part of Mbed TLS (https://tls.mbed.org)
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
if (!@ARGV || $ARGV[0] == '--help') {
|
|
print <<EOF;
|
|
Usage: $0 mbedtls_test_foo <file.pem
|
|
$0 TEST_FOO mbedtls_test_foo <file.pem
|
|
Print out a PEM file as C code defining a string constant.
|
|
|
|
Used to include some of the test data in /library/certs.c for
|
|
self-tests and sample programs.
|
|
EOF
|
|
exit;
|
|
}
|
|
|
|
my $pp_name = @ARGV > 1 ? shift @ARGV : undef;
|
|
my $name = shift @ARGV;
|
|
|
|
my @lines = map {chomp; s/([\\"])/\\$1/g; "\"$_\\r\\n\""} <STDIN>;
|
|
|
|
if (defined $pp_name) {
|
|
foreach ("#define $pp_name", @lines[0..@lines-2]) {
|
|
printf "%-72s\\\n", $_;
|
|
}
|
|
print "$lines[@lines-1]\n";
|
|
print "const char $name\[\] = $pp_name;\n";
|
|
} else {
|
|
print "const char $name\[\] =";
|
|
foreach (@lines) {
|
|
print "\n$_";
|
|
}
|
|
print ";\n";
|
|
}
|