mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 00:03:02 +01:00
24 lines
357 B
Bash
24 lines
357 B
Bash
#!/usr/bin/env bash
|
|
|
|
start_server() {
|
|
until ./gen/Release/firebird/bin/firebird; do
|
|
echo "Firebird crashed with exit code $?. Restarting..." >&2
|
|
done
|
|
}
|
|
|
|
dummy_output() {
|
|
while true; do
|
|
sleep 9m
|
|
echo "dummy output"
|
|
done
|
|
}
|
|
|
|
skip_tests() {
|
|
SKIP=skip.txt
|
|
echo bugs.core_0870 >> $SKIP
|
|
}
|
|
|
|
set -e
|
|
#set -x
|
|
eval "$1"
|