mbedtls/tests/scripts
Bence Szépkúti c7da1fe381 Add Apache-2.0 headers to all scripts
This commit was generated using the following script:

# ========================
#!/bin/sh

# Find scripts
find -path './.git' -prune -o '(' -name '*.gdb' -o -name '*.pl' -o -name '*.py' -o -name '*.sh' ')' -print | xargs sed -i '

# Remove Mbed TLS declaration if it occurs before the copyright line
1,/Copyright.*Arm/I {
  /This file is part of/,$ {
    /Copyright.*Arm/I! d
  }
}

# Convert non-standard header in scripts/abi_check.py to the format used in the other scripts
/"""/,/"""/ {

  # Cut copyright declaration
  /Copyright.*Arm/I {
    h
    N
    d
  }

  # Paste copyright declaration
  /"""/ {
    x
    /./ {
      s/^/# /    # Add #
      x          # Replace orignal buffer with Copyright declaration
      p          # Print original buffer, insert newline
      i\

      s/.*//     # Clear original buffer
    }
    x
  }
}

/Copyright.*Arm/I {

  # Print copyright declaration
  p

  # Read the two lines immediately following the copyright declaration
  N
  N

  # Insert Apache header if it is missing
  /SPDX/! {
    i\
# SPDX-License-Identifier: Apache-2.0\
#\
# Licensed under the Apache License, Version 2.0 (the "License"); you may\
# not use this file except in compliance with the License.\
# You may obtain a copy of the License at\
#\
# http://www.apache.org/licenses/LICENSE-2.0\
#\
# Unless required by applicable law or agreed to in writing, software\
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT\
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\
# See the License for the specific language governing permissions and\
# limitations under the License.

    # Insert Mbed TLS declaration if it is missing
    /This file is part of/! i\
#\
# This file is part of Mbed TLS (https://tls.mbed.org)
  }

  # Clear copyright declaration from buffer
  D
}
'
# ========================

Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
2020-06-15 12:05:47 +02:00
..
all-in-docker.sh Clean up file prologue comments 2019-06-29 17:45:34 -05:00
all.sh Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
basic-build-test.sh Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
basic-in-docker.sh Restore full tls coverage to remaining scripts 2020-03-23 17:55:31 +01:00
check-doxy-blocks.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
check-files.py Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
check-generated-files.sh Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
check-names.sh Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
check-python-files.sh Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
check-test-cases.py Document more methods in Python scripts 2020-04-11 20:23:22 +02:00
curves.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
depends-hashes.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
depends-pkalgs.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
docker_env.sh Improve compatibility with firewalled networks 2019-06-29 17:45:34 -05:00
doxygen.sh Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
gen_ctr_drbg.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
gen_gcm_decrypt.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
gen_gcm_encrypt.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
gen_pkcs1_v21_sign_verify.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
generate-afl-tests.sh Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
generate_test_code.py Pylint: minor code simplifications 2020-04-11 20:23:22 +02:00
key-exchanges.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
list-enum-consts.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
list-identifiers.sh Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
list-macros.sh Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
list-symbols.sh Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
mbedtls_test.py Pylint: minor code simplifications 2020-04-11 20:23:22 +02:00
psa_collect_statuses.py Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
recursion.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
run-test-suites.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
tcp_client.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
test-ref-configs.pl Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
test_config_script.py Pylint: explicitly note why we're doing an unchecked subprocess.run 2020-04-11 20:23:22 +02:00
test_generate_test_code.py Pylint: minor code simplifications 2020-04-11 20:23:22 +02:00
test_psa_constant_names.py Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
test_zeroize.gdb Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
travis-log-failure.sh Add Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00