blob: c01646aad929823d03e7e7119d00fc2d458fa48e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
TESTS_DEB := pkg-maintscript-leak
include ../Test.mk
test-case:
# Check for leaks on install
$(DPKG_INSTALL) pkg-maintscript-leak.deb
# Check for leaks on upgrade
$(DPKG_INSTALL) pkg-maintscript-leak.deb
# Check for leaks on removal
$(DPKG_PURGE) pkg-maintscript-leak
test-clean:
$(DPKG_PURGE) pkg-maintscript-leak
|