aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/Makefile4
-rw-r--r--test/ext/Makefile4
-rw-r--r--test/test_vapi.py4
3 files changed, 6 insertions, 6 deletions
diff --git a/test/Makefile b/test/Makefile
index 66c8f8a9bb7..ca861b3b3a1 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -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)
diff --git a/test/ext/Makefile b/test/ext/Makefile
index de219b1a5dc..6ec1213d532 100644
--- a/test/ext/Makefile
+++ b/test/ext/Makefile
@@ -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
diff --git a/test/test_vapi.py b/test/test_vapi.py
index 7bb815d77f3..e010415fe01 100644
--- a/test/test_vapi.py
+++ b/test/test_vapi.py
@@ -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 """