diff --git a/tests/compatible/dpdk/Makefile b/tests/compatible/dpdk/Makefile index 858312e75f95b630778920e5db352de197b55763..8d9cd1e88b6825b5ba1ba8f0d0e8b1de772b034e 100644 --- a/tests/compatible/dpdk/Makefile +++ b/tests/compatible/dpdk/Makefile @@ -17,7 +17,7 @@ all: ; install: mkdir -p $(DEST) - cp -a $(SUBDIR)/build *.py $(DEST) + cp -a *.py $(DEST) chmod a+x $(DEST)/*.py clean: diff --git a/tests/compatible/kabiwhitelist/Makefile b/tests/compatible/kabiwhitelist/Makefile index 5f683c9e7f12b51092e87e1c99bd56572fdb292e..373a7ef095a53f85ae60dbddc6c30a1bb640a21b 100644 --- a/tests/compatible/kabiwhitelist/Makefile +++ b/tests/compatible/kabiwhitelist/Makefile @@ -17,8 +17,8 @@ all: ; install: mkdir -p $(DEST) - cp -a $(SUBDIR)/build *.py $(DEST) - cp -a $(SUBDIR)/build *.sh $(DEST) + cp -a *.py $(DEST) + cp -a *.sh $(DEST) chmod a+x $(DEST)/*.py chmod a+x $(DEST)/*.sh diff --git a/tests/virtualization/Makefile b/tests/virtualization/Makefile index 42b579e8f4edb88e36dc080648d6d85113f2d39f..07bf8a226d92c9eac9d94bf2a9b7847c9aa4f235 100644 --- a/tests/virtualization/Makefile +++ b/tests/virtualization/Makefile @@ -13,7 +13,7 @@ .PHONY: all clean install HWCERT_TEST_LIB := $(DESTDIR)/usr/share/oech/lib/tests/virtualization -SUBDIRS := $(shell ls | grep -v Makefile) +SUBDIRS := $(shell ls | grep -v "Makefile\|stratovirt.xml\|__init__.py\|console_cmd.sh\|qemu.xml") all: for i in $(SUBDIRS); do $(MAKE) -C $$i; done