tests: fix setting gcov flag for test-cov target

Type: fix

Change-Id: I3c663babe4f32f5d2870265336b5d272cc029ce7
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
This commit is contained in:
Dave Wallace
2023-08-08 15:25:21 -04:00
committed by Florin Coras
parent 6631032791
commit 878a9f5706
2 changed files with 2 additions and 1 deletions

View File

@ -434,6 +434,7 @@ define test
VPP_BIN=$(BR)/install-$(1)-native/vpp/bin/vpp \
VPP_INSTALL_PATH=$(BR)/install-$(1)-native/ \
EXTENDED_TESTS=$(EXTENDED_TESTS) \
TEST_GCOV=$(TEST_GCOV) \
PYTHON=$(PYTHON) \
OS_ID=$(OS_ID) \
RND_SEED=$(RND_SEED) \

View File

@ -200,7 +200,7 @@ ARG6=--step
endif
ARG7=
ifneq ($(findstring $(TESTS_GCOV),1 y yes),)
ifneq ($(findstring $(TEST_GCOV),1 y yes),)
ARG7=--gcov
endif