blob: 8c9ff476de66319aada229d33955503e23ae3ecc [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
Bence Szépkúti1e148272020-08-07 13:07:28 +020015# Copyright The Mbed TLS Contributors
Peter Kolbus4225b1a2019-05-31 06:38:06 -050016# 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.
Peter Kolbus4225b1a2019-05-31 06:38:06 -050029
Peter Kolbuse4e2d3a2018-12-24 09:04:54 -060030source 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 $@