2020-03-27 16:35:23 +01:00
|
|
|
#! /usr/bin/env bash
|
2014-03-19 18:29:01 +01:00
|
|
|
|
2016-03-07 23:22:10 +00:00
|
|
|
# all.sh
|
|
|
|
#
|
2020-08-07 13:07:28 +02:00
|
|
|
# Copyright The Mbed TLS Contributors
|
2023-11-02 19:47:20 +00:00
|
|
|
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2017-12-21 15:59:21 +01:00
|
|
|
|
2024-10-09 11:18:43 +02:00
|
|
|
# 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.
|
|
|
|
|
2024-10-03 12:55:52 +02:00
|
|
|
# The path is going to change when this is moved to the framework
|
|
|
|
test_script_dir="${0%/*}"
|
|
|
|
source "$test_script_dir"/all-core.sh
|
2024-10-01 11:54:34 +02:00
|
|
|
|
2024-10-03 12:52:05 +02:00
|
|
|
main "$@"
|