From de836d2077e53c07a50c51d1580f8e93700eb5bd Mon Sep 17 00:00:00 2001 From: Jim McDonough Date: Wed, 24 May 2006 20:06:06 +0000 Subject: [PATCH] r15873: Use short signal names to placate ksh trap. bash seems to accept either and even uses them on the manpage. this should now enable make test on AIX. --- source/script/tests/test_functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/script/tests/test_functions.sh b/source/script/tests/test_functions.sh index 4134376bfc5..f263677bfcf 100644 --- a/source/script/tests/test_functions.sh +++ b/source/script/tests/test_functions.sh @@ -19,8 +19,8 @@ samba3_stop_sig_kill() { samba3_check_or_start() { if [ -n "$SERVER_TEST_FIFO" ];then - trap samba3_stop_sig_kill SIGINT SIGQUIT - trap samba3_stop_sig_kill SIGTERM + trap samba3_stop_sig_kill INT QUIT + trap samba3_stop_sig_kill TERM if [ -p "$SERVER_TEST_FIFO" ];then return 0; -- 2.11.4.GIT