Peter Kolbus | e4e2d3a | 2018-12-24 09:04:54 -0600 | [diff] [blame^] | 1 | #!/bin/bash -eu |
| 2 | |
| 3 | # all-in-docker.sh |
| 4 | # |
| 5 | # This file is part of mbed TLS (https://tls.mbed.org) |
| 6 | # |
| 7 | # Copyright (c) 2018-2019, ARM Limited, All Rights Reserved |
| 8 | # |
| 9 | # Purpose |
| 10 | # ------- |
| 11 | # This runs all.sh (except for armcc) in a Docker container. |
| 12 | # |
| 13 | # Notes for users |
| 14 | # --------------- |
| 15 | # See docker_env.sh for prerequisites and other information. |
| 16 | # |
| 17 | # See also all.sh for notes about invocation of that script. |
| 18 | |
| 19 | source tests/scripts/docker_env.sh |
| 20 | |
| 21 | # Run tests that are possible with openly available compilers |
| 22 | run_in_docker tests/scripts/all.sh \ |
| 23 | --no-armcc \ |
| 24 | $@ |