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
Jaeden Amero
7cb47de12a
query_config: Move to programs/test
...
As the SSL programs, like ssl_client2 and ssl_server2, are dependent on
SSL and therefore about to be removed, the only consumer of query_config
is the query_compile_time_config test. As such, it makes sense to move
query_config to be next to what uses it.
2020-02-11 19:26:27 +01:00
Andres Amaya Garcia
8645f733cf
Update query_config.c with new macros
2019-02-07 10:38:22 +00:00
Andres Amaya Garcia
ef672f0319
Exclude macros from query_config.c generation
2019-02-07 10:38:22 +00:00
Andres Amaya Garcia
27b3372c45
Fix query_config macro expansion for windows
2019-02-07 10:38:22 +00:00
Andres Amaya Garcia
5aca555391
Fix GCC 0-length printf format string error
2019-02-07 10:38:22 +00:00
Andres Amaya Garcia
109f8b6100
Fix typo in quenerate_query_config.pl comment
2019-02-07 10:38:22 +00:00
Andres Amaya Garcia
88121a96f6
Script generation of query_config.c file
2019-02-07 10:37:39 +00:00