X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=dpdk-tests%2Fdpdk_scripts%2Fcleanup_dpdk.sh;fp=dpdk-tests%2Fdpdk_scripts%2Fcleanup_dpdk.sh;h=c4d0828ac15f50aefe6a5f243cc8ac81e51f6ab6;hp=915d383bfa406635e025a003ed812038e88b52d9;hb=6dd47ed60a15c9f4c86d095844839610783a8393;hpb=3f71d7394f1dc584de9725736d130a5a0e076533 diff --git a/dpdk-tests/dpdk_scripts/cleanup_dpdk.sh b/dpdk-tests/dpdk_scripts/cleanup_dpdk.sh index 915d383bfa..c4d0828ac1 100755 --- a/dpdk-tests/dpdk_scripts/cleanup_dpdk.sh +++ b/dpdk-tests/dpdk_scripts/cleanup_dpdk.sh @@ -15,6 +15,7 @@ port2_pci=$4 sudo pgrep testpmd if [ $? -eq "0" ]; then success=false + sudo pkill tail sudo pkill testpmd for attempt in {1..5}; do sudo pgrep testpmd @@ -24,15 +25,16 @@ if [ $? -eq "0" ]; then fi sleep 1 done - if [ ${success} -eq false ]; then + if [ "$success" = false ]; then echo "The command sudo pkill testpmd failed" exit 1 fi + cat ${TESTPMD_LOG} fi +sudo rm -f ${TESTPMD_LOG} sudo rm -f ${TESTPMD_PID} sudo rm -f /dev/hugepages/* -cat ${TESTPMD_LOG} cd ${ROOTDIR}/dpdk-16.07/ ./tools/dpdk-devbind.py -b ${port1_driver} ${port1_pci}