4
mirror of git://git.acid.vegas/unrealircd.git synced 2024-10-03 07:36:41 +00:00
unrealircd/extras/build-tests/nix/run-tests.bbwrapper

15 lines
430 B
Plaintext
Raw Normal View History

2020-03-29 09:16:53 +00:00
#!/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