diff mbox series

[API-NEXT,v4,1/4] test: l2fwd pass under coverage

Message ID 1497538809-15817-2-git-send-email-odpbot@yandex.ru
State New
Headers show
Series [API-NEXT,v4,1/4] test: l2fwd pass under coverage | expand

Commit Message

Github ODP bot June 15, 2017, 3 p.m. UTC
From: Maxim Uvarov <maxim.uvarov@linaro.org>


env variable TEST=coverage is set, use it to not fail
under gcov run which is really slow.

Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>

---
/** Email created from pull request 49 (muvarov:api-next_travis_fixes)
 ** https://github.com/Linaro/odp/pull/49
 ** Patch: https://github.com/Linaro/odp/pull/49.patch
 ** Base sha: 4f97e500a097928e308a415c32a88465adc5f5cc
 ** Merge commit sha: 9da6cb2fc4e7c9c4bb5da96da553c50eeffcec59
 **/
 test/common_plat/performance/odp_l2fwd_run.sh | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/test/common_plat/performance/odp_l2fwd_run.sh b/test/common_plat/performance/odp_l2fwd_run.sh
index dd42ede9..6871e4b0 100755
--- a/test/common_plat/performance/odp_l2fwd_run.sh
+++ b/test/common_plat/performance/odp_l2fwd_run.sh
@@ -96,6 +96,9 @@  run_l2fwd()
 		ret=1
 	elif [ $ret -eq 0 ]; then
 		PASS_PPS=5000
+		if [ "${TEST}" = "coverage" ]; then
+			PASS_PPS=10
+		fi
 		MAX_PPS=$(awk '/TEST RESULT/ {print $3}' $LOG)
 		if [ "$MAX_PPS" -lt "$PASS_PPS" ]; then
 			echo "FAIL: pps below threshold $MAX_PPS < $PASS_PPS"