summaryrefslogtreecommitdiff
path: root/tests/scripts/all-in-docker.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/scripts/all-in-docker.sh')
-rwxr-xr-xtests/scripts/all-in-docker.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/scripts/all-in-docker.sh b/tests/scripts/all-in-docker.sh
new file mode 100755
index 00000000000..b2a31c265e1
--- /dev/null
+++ b/tests/scripts/all-in-docker.sh
@@ -0,0 +1,27 @@
+#!/bin/bash -eu
+
+# all-in-docker.sh
+#
+# Purpose
+# -------
+# This runs all.sh (except for armcc) in a Docker container.
+#
+# WARNING: the Dockerfile used by this script is no longer maintained! See
+# https://github.com/Mbed-TLS/mbedtls-test/blob/master/README.md#quick-start
+# for the set of Docker images we use on the CI.
+#
+# Notes for users
+# ---------------
+# See docker_env.sh for prerequisites and other information.
+#
+# See also all.sh for notes about invocation of that script.
+
+# Copyright The Mbed TLS Contributors
+# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
+
+source tests/scripts/docker_env.sh
+
+# Run tests that are possible with openly available compilers
+run_in_docker tests/scripts/all.sh \
+ --no-armcc \
+ $@