tests: run vapi tests by default

Type: fix

Change-Id: I7b190507446fca745fc4bc6abbdeed48f55abdb9
Signed-off-by: Klement Sekera <ksekera@cisco.com>
This commit is contained in:
Klement Sekera
2019-09-02 15:19:41 +00:00
committed by Ole Trøan
parent 3a350702ec
commit be2c2a82d8
3 changed files with 6 additions and 6 deletions

View File

@ -191,9 +191,7 @@ sanity: verify-no-running-vpp
.PHONY: ext
ext:
@if [ "$(EXTENDED_TESTS)" = "yes" ]; then\
make -C ext;\
fi
make -C ext
test-dep: verify-test-dir $(PAPI_INSTALL_DONE)

View File

@ -8,6 +8,10 @@ ifeq ($(filter rhel centos,$(OS_ID)),$(OS_ID))
VAPI_CPPBIN=
endif
ifeq ($(filter yes,$(EXTENDED_TESTS)),$(EXTENDED_TESTS))
VOM_BIN=
endif
VAPI_LIBS = \
-L$(VPP_INSTALL_PATH)/vpp/lib \
-lvppinfra -lvlibmemoryclient -lsvm -lpthread -lcheck -lrt -lm -lvapiclient

View File

@ -4,11 +4,9 @@
import unittest
import os
import signal
from framework import VppTestCase, running_extended_tests, \
running_on_centos, VppTestRunner, Worker
from framework import VppTestCase, running_on_centos, VppTestRunner, Worker
@unittest.skipUnless(running_extended_tests, "part of extended tests")
class VAPITestCase(VppTestCase):
""" VAPI test """