diff options
Diffstat (limited to '')
-rwxr-xr-x | test/testsuite-03.units/succeeds-on-restart.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/testsuite-03.units/succeeds-on-restart.sh b/test/testsuite-03.units/succeeds-on-restart.sh new file mode 100755 index 0000000..1428b18 --- /dev/null +++ b/test/testsuite-03.units/succeeds-on-restart.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: LGPL-2.1-or-later +if [[ ! -f "/succeeds-on-restart.ko" ]] +then + touch "/succeeds-on-restart.ko" + exit 1 +else + rm "/succeeds-on-restart.ko" + exit 0 +fi |