From 0ee0943991b7d2cb43c63c76ba59035cacbc1b91 Mon Sep 17 00:00:00 2001 From: Mariusz Drost Date: Thu, 19 Dec 2019 13:49:58 +0000 Subject: l4p/tcp_ofo: fix killing l4fwd app in tests Between test cases l4fwd application is closed with kill command. Default kill signal is SIGTERM which is not supported in l4fwd. To close l4fwd cleanly, signal has been changed to SIGINT. Signed-off-by: Mariusz Drost Change-Id: If083f18cab22766154cc80afa26d45d953277294 --- examples/l4fwd/test/config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/l4fwd/test/config.sh b/examples/l4fwd/test/config.sh index 5932936..fef8fda 100644 --- a/examples/l4fwd/test/config.sh +++ b/examples/l4fwd/test/config.sh @@ -235,7 +235,7 @@ EOF l4fwd_stop() { # kill runnning l4fwd app - kill ${L4FWD_PID} + kill -s SIGINT ${L4FWD_PID} # remove temporary files rm -f ${L4FWD_EXEC_FILE} -- cgit 1.2.3-korg