Re: [ovs-dev] [PATCH] tests: Gracefully terminate daemons in OVN tests

2016-02-25 Thread Ben Pfaff
On Thu, Feb 25, 2016 at 10:57:28AM -0500, Lance Richardson wrote: > Daemons started in OVN tests are currently killed (via "on_exit kill" > in start_daemon()). This is problematic for tools (such as gcov) that > rely on exit() being called. > > Fix by using "ovs-appctl ... exit" to gracefully term

[ovs-dev] [PATCH] tests: Gracefully terminate daemons in OVN tests

2016-02-25 Thread Lance Richardson
Daemons started in OVN tests are currently killed (via "on_exit kill" in start_daemon()). This is problematic for tools (such as gcov) that rely on exit() being called. Fix by using "ovs-appctl ... exit" to gracefully terminate the daemons. Signed-off-by: Lance Richardson Tested-by: Aaron Conole