FIX: check if testpmd is alive
[csit.git] / resources / libraries / bash / function / dpdk.sh
index da46c6d..1654cf8 100644 (file)
@@ -206,7 +206,7 @@ function dpdk_kill () {
     fi
 
     # Remove hugepages
-    sudo rm -f /dev/hugepages/* || die "Removing hugepages failed!"
+    sudo rm -rf /dev/hugepages/* || die "Removing hugepages failed!"
 }
 
 
@@ -350,9 +350,11 @@ function dpdk_testpmd () {
 
     for attempt in {1..60}; do
         echo "Checking if testpmd is alive, attempt nr ${attempt}"
-        if fgrep "Press enter to exit" screenlog.0; then
-            cat screenlog.0
-            exit 0
+         if fgrep "Press enter to exit" screenlog.0 && \
+            fgrep "Port 0: link state change event" screenlog.0 && \
+            fgrep "Port 1: link state change event" screenlog.0; then
+             cat screenlog.0
+             exit 0
         fi
         sleep 1
     done