From 6e8a4ec8c9e937638b6d2328041c0a57526ae09c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Sat, 2 Oct 2021 12:56:11 +0200 Subject: [PATCH] testing: Enable selecting of host --- test-in-docker.sh | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/test-in-docker.sh b/test-in-docker.sh index dc8edcf..48d63db 100755 --- a/test-in-docker.sh +++ b/test-in-docker.sh @@ -70,6 +70,19 @@ test_neptune() { ' } -test_ares -test_tb_hak -test_neptune +case "${1:-all}" in + ares) + test_ares + ;; + tb_hak) + test_tb_hak + ;; + neptune) + test_neptune + ;; + all) + test_ares + test_tb_hak + test_neptune + ;; +esac