mbedtls/programs/test
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
..
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 Link test programs that only use platform functions with mbedcrypto 2020-03-19 14:23:45 +01:00
cpp_dummy_build.cpp Revert "cpp_dummy_build: Remove X.509 dependency" 2020-03-19 14:23:45 +01: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 Apache-2.0 headers to all scripts 2020-06-15 12:05:47 +02:00
zeroize.c Remove hardcoded line number from the zeroize test 2020-06-09 12:52:04 +02:00