blob: e26abd8113387ca00db5ee44fa2a4b12119ff8f9 [file] [log] [blame]
Manuel Pégourié-Gonnard8bcad482024-10-23 10:41:15 +02001#! /usr/bin/env bash
2
3# all.sh
4#
5# Copyright The Mbed TLS Contributors
6# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
7
8# This file is executable; it is the entry point for users and the CI.
9# See "Files structure" in all-core.sh for other files used.
10
11# This script must be invoked from the project's root.
12
Manuel Pégourié-Gonnarda4f02272024-10-24 10:05:36 +020013# Prevent silly mistakes when people would invoke this from mbedtls
14if [ -d tf-psa-crypto -a -d library ]; then
15 echo "When invoking this script from an mbedtls checkout," >&2
16 echo "you must change the working directory to tf-psa-crypto." >&2
17 exit 255
18fi
19
Manuel Pégourié-Gonnard8bcad482024-10-23 10:41:15 +020020# The path is going to change when this is moved to the framework
21source ../tests/scripts/all-core.sh
22
23main "$@"