From 3c6014554b0e994663989a3e12bce909d2bcba8d Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Wed, 31 Aug 2022 11:33:06 -0700 Subject: [PATCH] tests: ovs_dpdk: Cleanup ovs-dpdk after terminating VMs Signed-off-by: Bo Chen --- tests/integration.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration.rs b/tests/integration.rs index 56be687fa..75b663042 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -6433,14 +6433,14 @@ mod common_parallel { guest2.ssh_command("nc -vz 172.100.0.1 12345").unwrap(); }); - cleanup_ovs_dpdk(); - let _ = child1.kill(); let _ = child2.kill(); let output = child1.wait_with_output().unwrap(); child2.wait().unwrap(); + cleanup_ovs_dpdk(); + handle_child_output(r, &output); }