mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-01-01 09:10:03 +00:00
8da0e9eef7
In preparation for adding tf-psa-crypto/test/scripts/all.sh which will run from tf-psa-crypto. Use paths relative to the currently sourced file when including common files (ie, those that will soon be moved to the framework). Otherwise, use paths relative to the current directory, aka project's root. Document that test/script/all.sh must be invoked from the project's root (that was already the case, but implicit so far). Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
17 lines
429 B
Bash
Executable File
17 lines
429 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
# all.sh
|
|
#
|
|
# Copyright The Mbed TLS Contributors
|
|
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
# This file is executable; it is the entry point for users and the CI.
|
|
# See "Files structure" in all-core.sh for other files used.
|
|
|
|
# This script must be invoked from the project's root.
|
|
|
|
# The path is going to change when this is moved to the framework
|
|
source tests/scripts/all-core.sh
|
|
|
|
main "$@"
|