mbedtls/programs/test
Bence Szépkúti 700ee44545 Add missing copyright dates to scripts and sources
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 --exclude-dir 3rdparty\
                 --exclude-dir programs/fuzz 'Copyright.*Arm' | sed '
  s/.*\///
  s/.*\./*./
  s/.*/-name "&"/
' | 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' -o -path './3rdparty' -o -path './programs/fuzz' ')' -prune\
  -o ! -path './tests/data_files/format_pkcs12.fmt'\
     ! -path './programs/psa/psa_constant_names_generated.c'\
     '(' $exts ')' -print" | xargs grep -Li 'Copyright.*Arm'
# ========================

Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
2020-06-15 12:05:46 +02:00
..
cmake_subproject Restore linking against all libraries in the cmake_subproject test 2020-03-23 17:55:31 +01:00
benchmark.c Merge pull request #3319 from Kxuan/development 2020-05-18 10:10:25 +01:00
CMakeLists.txt cmake: link programs that only use crypto with libmbedcrypto 2020-02-11 19:26:27 +01:00
cpp_dummy_build.cpp cpp_dummy_build: Add missing header psa_util.h 2019-04-14 15:55:20 -05:00
query_compile_time_config.c Fix aligment in programs/test/query_compile_time_config.c 2019-02-07 10:38:22 +00:00
query_config.c Merge pull request #3315 from hanno-arm/tls13-experimental-macro 2020-06-04 15:51:54 +01:00
selftest.c Merge pull request #2595 from k-stachowiak/unified-exit-in-examples 2020-05-12 10:46:47 +02:00
udp_proxy.c Merge pull request #2595 from k-stachowiak/unified-exit-in-examples 2020-05-12 10:46:47 +02:00
udp_proxy_wrapper.sh Add missing copyright dates to scripts and sources 2020-06-15 12:05:46 +02:00
zeroize.c Remove hardcoded line number from the zeroize test 2020-06-09 12:52:04 +02:00