1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-29 08:16:38 +02:00
Files
unrealircd/extras/build-tests/nix/run-tests.bbwrapper
T
2019-05-13 13:41:13 +02:00

15 lines
430 B
Bash
Executable File

#!/bin/bash
#
# This is a simple wrapper script that will run the tests
# When finished, either due to succes or failure,
# it will kill the ircd
#
# Also, it makes sure the job times out (is killed)
# in case it misbehaves
#
set +ex
timeout --kill-after=5 600 extras/build-tests/nix/run-tests
EX="$?"
killall -9 valgrind valgrind.bin memcheck memcheck-amd64-linux memcheck-x86-linux ircd unrealircd val 1>/dev/null 2>&1
exit $EX