blob: 84334ce1af88dfe598daf58f56a7c0738c5d7a8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
TESTS_DEB := pkg-a pkg-b
include ../Test.mk
test-case:
$(DPKG_INSTALL) pkg-a.deb
# test if the replacing package takes over on install
$(DPKG_INSTALL) pkg-b.deb
test-clean:
$(DPKG_PURGE) pkg-b
-$(DPKG_PURGE) pkg-a
|