1#!/bin/bash -eu 2 3# all-in-docker.sh 4# 5# Purpose 6# ------- 7# This runs all.sh (except for armcc) in a Docker container. 8# 9# Notes for users 10# --------------- 11# See docker_env.sh for prerequisites and other information. 12# 13# See also all.sh for notes about invocation of that script. 14 15# Copyright The Mbed TLS Contributors 16# SPDX-License-Identifier: Apache-2.0 17# 18# Licensed under the Apache License, Version 2.0 (the "License"); you may 19# not use this file except in compliance with the License. 20# You may obtain a copy of the License at 21# 22# http://www.apache.org/licenses/LICENSE-2.0 23# 24# Unless required by applicable law or agreed to in writing, software 25# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 26# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 27# See the License for the specific language governing permissions and 28# limitations under the License. 29 30source tests/scripts/docker_env.sh 31 32# Run tests that are possible with openly available compilers 33run_in_docker tests/scripts/all.sh \ 34 --no-armcc \ 35 $@ 36