8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 18:43:02 +01:00
firebird-mirror/travis.sh
2015-06-12 14:32:13 +00:00

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"