summaryrefslogtreecommitdiffstats
path: root/tests/t-triggers-selfcycle/Makefile
blob: cd916f831af84415af3d8e182c31efb89bf72050 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
TESTS_DEB := pkg-trigger-unpack pkg-trigger-activate

include ../Test.mk

test-case:
	# Self trigger cycles cannot happen with unpacked files.
	$(DPKG_INSTALL) pkg-trigger-unpack.deb
	$(DPKG_UNPACK) pkg-trigger-unpack.deb
	$(DPKG_CONFIGURE) pkg-trigger-unpack
	$(DPKG_CONFIGURE) --pending
	$(DPKG_PURGE) pkg-trigger-unpack

	# Self trigger cycles cannot happen with activate directives.
	$(DPKG_INSTALL) pkg-trigger-activate.deb
	$(DPKG_UNPACK) pkg-trigger-activate.deb
	$(DPKG_CONFIGURE) pkg-trigger-activate
	$(DPKG_CONFIGURE) --pending
	$(DPKG_PURGE) pkg-trigger-activate

	# Cleanup.
	$(DPKG_PURGE) pkg-trigger-unpack
	$(DPKG_PURGE) pkg-trigger-activate

test-clean:
	-$(DPKG_PURGE) pkg-trigger-unpack pkg-trigger-activate