blob: 1f413bb70e65a2383d7c5ef52c1fb6a367a7e173 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
TESTS_DEB := pkg-conff-prompt-0 pkg-conff-prompt-1
include ../Test.mk
build-hook:
touch "pkg-conff-prompt-0/test-conffile with spaces"
touch "pkg-conff-prompt-1/test-conffile with spaces"
clean-hook:
$(RM) "pkg-conff-prompt-0/test-conffile with spaces"
$(RM) "pkg-conff-prompt-1/test-conffile with spaces"
test-case:
$(DPKG_INSTALL) pkg-conff-prompt-0.deb
# test if package prompts on install
$(DPKG_INSTALL) pkg-conff-prompt-1.deb
test-clean:
$(DPKG_PURGE) pkg-conff-prompt
|