mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 08:45:40 +01:00
all.sh: add some documentation
This commit is contained in:
parent
bca6ab9d38
commit
192c72f7a1
@ -4,20 +4,78 @@
|
|||||||
#
|
#
|
||||||
# This file is part of mbed TLS (https://tls.mbed.org)
|
# This file is part of mbed TLS (https://tls.mbed.org)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2014-2016, ARM Limited, All Rights Reserved
|
# Copyright (c) 2014-2017, ARM Limited, All Rights Reserved
|
||||||
#
|
|
||||||
|
|
||||||
|
|
||||||
|
################################################################
|
||||||
|
#### Documentation
|
||||||
|
################################################################
|
||||||
|
|
||||||
# Purpose
|
# Purpose
|
||||||
|
# -------
|
||||||
#
|
#
|
||||||
# To run all tests possible or available on the platform.
|
# To run all tests possible or available on the platform.
|
||||||
#
|
#
|
||||||
|
# Notes for users
|
||||||
|
# ---------------
|
||||||
|
#
|
||||||
# Warning: the test is destructive. It includes various build modes and
|
# Warning: the test is destructive. It includes various build modes and
|
||||||
# configurations, and can and will arbitrarily change the current CMake
|
# configurations, and can and will arbitrarily change the current CMake
|
||||||
# configuration. After this script has been run, the CMake cache will be lost
|
# configuration. The following files must be committed into git:
|
||||||
# and CMake will no longer be initialised.
|
# * include/mbedtls/config.h
|
||||||
|
# * Makefile, library/Makefile, programs/Makefile, tests/Makefile
|
||||||
|
# After running this script, the CMake cache will be lost and CMake
|
||||||
|
# will no longer be initialised.
|
||||||
#
|
#
|
||||||
# The script assumes the presence of gcc and clang (recent enough for using
|
# The script assumes the presence of a number of tools:
|
||||||
# ASan with gcc and MemSan with clang, or valgrind) are available, as well as
|
# * Basic Unix tools (Windows users note: a Unix-style find must be before
|
||||||
# cmake and a "good" find.
|
# the Windows find in the PATH)
|
||||||
|
# * Perl
|
||||||
|
# * GNU Make
|
||||||
|
# * CMake
|
||||||
|
# * GCC and Clang (recent enough for using ASan with gcc and MemSan with clang, or valgrind)
|
||||||
|
# * arm-gcc and mingw-gcc
|
||||||
|
# * ArmCC 5 and ArmCC 6, unless invoked with --no-armcc
|
||||||
|
# * Yotta build dependencies, unless invoked with --no-yotta
|
||||||
|
# * OpenSSL and GnuTLS command line tools, recent enough for the
|
||||||
|
# interoperability tests. If they don't support SSLv3 then a legacy
|
||||||
|
# version of these tools must be present as well (search for LEGACY
|
||||||
|
# below).
|
||||||
|
# See the invocation of check_tools below for details.
|
||||||
|
#
|
||||||
|
# This script must be invoked from the toplevel directory of a git
|
||||||
|
# working copy of Mbed TLS.
|
||||||
|
#
|
||||||
|
# Note that the output is not saved. You may want to run
|
||||||
|
# script -c tests/scripts/all.sh
|
||||||
|
# or
|
||||||
|
# tests/scripts/all.sh >all.log 2>&1
|
||||||
|
#
|
||||||
|
# Notes for maintainers
|
||||||
|
# ---------------------
|
||||||
|
#
|
||||||
|
# The tests are roughly in order from fastest to slowest. This doesn't
|
||||||
|
# have to be exact, but in general you should add slower tests towards
|
||||||
|
# the end and fast checks near the beginning.
|
||||||
|
#
|
||||||
|
# Sanity checks have the following form:
|
||||||
|
# 1. msg "short description of what is about to be done"
|
||||||
|
# 2. run sanity check (failure stops the script)
|
||||||
|
#
|
||||||
|
# Build or build-and-test steps have the following form:
|
||||||
|
# 1. msg "short description of what is about to be done"
|
||||||
|
# 2. cleanup
|
||||||
|
# 3. preparation (config.pl, cmake, ...) (failure stops the script)
|
||||||
|
# 4. make
|
||||||
|
# 5. Run tests if relevant. All tests must be prefixed with
|
||||||
|
# if_build_successful for the sake of --keep-going.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
################################################################
|
||||||
|
#### Initialization and command line parsing
|
||||||
|
################################################################
|
||||||
|
|
||||||
# Abort on errors (and uninitialised variables)
|
# Abort on errors (and uninitialised variables)
|
||||||
set -eu
|
set -eu
|
||||||
@ -368,6 +426,12 @@ if [ $RUN_ARMCC -ne 0 ]; then
|
|||||||
check_tools "$ARMC5_CC" "$ARMC5_AR" "$ARMC6_CC" "$ARMC6_AR"
|
check_tools "$ARMC5_CC" "$ARMC5_AR" "$ARMC6_CC" "$ARMC6_AR"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
################################################################
|
||||||
|
#### Basic checks
|
||||||
|
################################################################
|
||||||
|
|
||||||
#
|
#
|
||||||
# Test Suites to be executed
|
# Test Suites to be executed
|
||||||
#
|
#
|
||||||
@ -402,6 +466,12 @@ msg "test: doxygen warnings" # ~ 3s
|
|||||||
cleanup
|
cleanup
|
||||||
tests/scripts/doxygen.sh
|
tests/scripts/doxygen.sh
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
################################################################
|
||||||
|
#### Build and test many configurations and targets
|
||||||
|
################################################################
|
||||||
|
|
||||||
if [ $RUN_ARMCC -ne 0 ] && [ $YOTTA -ne 0 ]; then
|
if [ $RUN_ARMCC -ne 0 ] && [ $YOTTA -ne 0 ]; then
|
||||||
# Note - use of yotta is deprecated, and yotta also requires armcc to be on the
|
# Note - use of yotta is deprecated, and yotta also requires armcc to be on the
|
||||||
# path, and uses whatever version of armcc it finds there.
|
# path, and uses whatever version of armcc it finds there.
|
||||||
@ -772,6 +842,12 @@ make test
|
|||||||
cd "$MBEDTLS_ROOT_DIR"
|
cd "$MBEDTLS_ROOT_DIR"
|
||||||
rm -rf "$OUT_OF_SOURCE_DIR"
|
rm -rf "$OUT_OF_SOURCE_DIR"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
################################################################
|
||||||
|
#### Termination
|
||||||
|
################################################################
|
||||||
|
|
||||||
msg "Done, cleaning up"
|
msg "Done, cleaning up"
|
||||||
cleanup
|
cleanup
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user