summaryrefslogtreecommitdiff
path: root/test/units/testsuite-74.sh
blob: 13c767e490e96182a0481745e269ee4068769bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash
# SPDX-License-Identifier: LGPL-2.1-or-later
set -eux
set -o pipefail

: >/failed

for script in "${0%.sh}".*.sh; do
    echo "Running $script"
    "./$script"
done

touch /testok
rm /failed