Skip to content
Snippets Groups Projects
Commit 04720c72 authored by Alfonso Tierno's avatar Alfonso Tierno
Browse files

adding make test using the test option of upgrade_descriptor_version


Change-Id: Iab0de8e80c52383d438948df1f73b86529b08d7f
Signed-off-by: default avatartierno <alfonso.tiernosepulveda@telefonica.com>
parent ca56c645
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@
#
SUBDIRS_CLEAN = $(addsuffix .clean, $(SUBDIRS))
SUBDIRS_TEST = $(addsuffix .test, $(SUBDIRS))
.PHONY: $(SUBDIRS) $(SUBDIRS_CLEAN) clean
......@@ -22,8 +23,13 @@ all: $(SUBDIRS)
clean: $(SUBDIRS_CLEAN)
test: $(SUBDIRS_TEST)
$(SUBDIRS_CLEAN): %.clean:
@$(MAKE) --no-print-directory -C $* clean
$(SUBDIRS_TEST): %.test:
@$(MAKE) --no-print-directory -C $* test
$(SUBDIRS):
@$(MAKE) --no-print-directory -C $@
......@@ -31,6 +31,7 @@ Q=@
GEN_VNFD_PKG := $(TOOLS_DIR)/gen_vnfd_pkg.sh
GEN_NSD_PKG := $(TOOLS_DIR)/gen_nsd_pkg.sh
GEN_PKG := $(TOOLS_DIR)/generate_descriptor_pkg.sh
TEST_PKG := $(TOOLS_DIR)/upgrade_descriptor_version.py
BUILD_VNFD := $(shell readlink -f .|sed -e 's/\/.*descriptor-packages//' | grep vnfd)
DEP_FILES = $(wildcard src/*)
......@@ -73,4 +74,9 @@ clean:
$(Q)rm -rf $(BUILD_DIR)
$(Q)rm -rf $(CHARM_BUILD_DIR)
test:
$(Q)echo -n testing $(shell readlink -f src/*.yaml) " "
$(Q)$(TEST_PKG) --test src/*.yaml
$(Q)echo OK
.DEFAULT_GOAL := all
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment