blob: ee9a09290114b65cb3363ebb2d6b638fa762ffe7 [file] [log] [blame]
Peter Kolbuse4e2d3a2018-12-24 09:04:54 -06001#!/bin/bash -eu
2
3# all-in-docker.sh
4#
Peter Kolbuse4e2d3a2018-12-24 09:04:54 -06005# 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
Peter Kolbus4225b1a2019-05-31 06:38:06 -050015# Copyright (C) 2006-2019, Arm Limited (or its affiliates), All Rights Reserved.
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#
30# This file is part of Mbed TLS (https://tls.mbed.org)
31
Peter Kolbuse4e2d3a2018-12-24 09:04:54 -060032source tests/scripts/docker_env.sh
33
34# Run tests that are possible with openly available compilers
35run_in_docker tests/scripts/all.sh \
36 --no-armcc \
37 $@