mirror of
git://git.proxmox.com/git/pve-common.git
synced 2024-12-22 21:33:47 +03:00
7d6cc4f14f
more or less a copy from the normal section config test, but now with properties defined multiple times as well as conflicting options Signed-off-by: Dominik Csapak <d.csapak@proxmox.com> [ TL: improve consistency with property-isolation terminology ] Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
26 lines
474 B
Makefile
26 lines
474 B
Makefile
SUBDIRS = etc_network_interfaces
|
|
TESTS = lock_file.test \
|
|
calendar_event_test.test \
|
|
convert_size_test.test \
|
|
procfs_tests.test \
|
|
format_test.test \
|
|
section_config_test.test \
|
|
api_parameter_test.test \
|
|
is_deeply_test.test \
|
|
section_config_property_isolation_test.pl \
|
|
|
|
all:
|
|
|
|
.PHONY: check install clean distclean
|
|
|
|
export PERLLIB=../src
|
|
|
|
check: $(TESTS)
|
|
for d in $(SUBDIRS); do $(MAKE) -C $$d check; done
|
|
|
|
%.test: %.pl
|
|
TZ=UTC-1 ./$<
|
|
|
|
distclean: clean
|
|
clean:
|