mirror of
https://gitlab.com/fedora/bootc/base-images.git
synced 2026-08-29 12:32:40 +00:00
13 lines
217 B
Text
13 lines
217 B
Text
|
|
#!/bin/bash
|
||
|
|
set -euo pipefail
|
||
|
|
srcdir=$(cd $(dirname $0) && pwd)
|
||
|
|
rootfs=$1
|
||
|
|
shift
|
||
|
|
cd $rootfs
|
||
|
|
for case in ${srcdir}/cases/*; do
|
||
|
|
if test -x "$case"; then
|
||
|
|
echo "Running $case"
|
||
|
|
$case
|
||
|
|
echo "ok $case"
|
||
|
|
fi
|
||
|
|
done
|