5
0
mirror of git://git.proxmox.com/git/pve-common.git synced 2025-02-07 09:57:24 +03:00

tests: allow to make tests in parallel

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2019-11-23 12:14:19 +01:00
parent 69e15ccb47
commit 510f865b5c

View File

@ -4,12 +4,13 @@ all:
.PHONY: check install clean distclean
check:
for d in $(SUBDIRS); do $(MAKE) -C $$d check; done
./lock_file.pl
./calendar_event_test.pl
./convert_size_test.pl
export PERLLIB=../src
check: lock_file.test calendar_event_test.test convert_size_test.test
for d in $(SUBDIRS); do $(MAKE) -C $$d check; done
%.test: %.pl
./$<
install: check
distclean: clean
clean: