FIX: check if testpmd is alive 31/27331/1
authorJan Gelety <jgelety@cisco.com>
Wed, 27 May 2020 01:55:11 +0000 (03:55 +0200)
committerJan Gelety <jgelety@cisco.com>
Wed, 27 May 2020 01:55:11 +0000 (03:55 +0200)
Change-Id: I12f21a4a7ae7c8593c42fa8e6cc4d65e36d41270
Signed-off-by: Jan Gelety <jgelety@cisco.com>
resources/libraries/bash/function/dpdk.sh

index 72c1e5c..1654cf8 100644 (file)
@@ -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