diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 14:58:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 14:58:51 +0000 |
commit | cbffab246997fb5a06211dfb706b54e5ae5bb59f (patch) | |
tree | 0573c5d96f58d74d76a49c0f2a70398e389a36d3 /tests/t-control-bogus/Makefile | |
parent | Initial commit. (diff) | |
download | dpkg-cbffab246997fb5a06211dfb706b54e5ae5bb59f.tar.xz dpkg-cbffab246997fb5a06211dfb706b54e5ae5bb59f.zip |
Adding upstream version 1.21.22.upstream/1.21.22upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tests/t-control-bogus/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/t-control-bogus/Makefile b/tests/t-control-bogus/Makefile new file mode 100644 index 0000000..ec042dd --- /dev/null +++ b/tests/t-control-bogus/Makefile @@ -0,0 +1,32 @@ +include ../Test.mk + +test-case: + # test building package with bogus control files + ! $(DPKG_BUILD_DEB) pkg-bogus-colon + ! $(DPKG_BUILD_DEB) pkg-bogus-blank + ! $(DPKG_BUILD_DEB) pkg-bogus-fieldname-empty + ! $(DPKG_BUILD_DEB) pkg-bogus-fieldname-partial + ! $(DPKG_BUILD_DEB) pkg-bogus-format-string + + # build bogus packages + $(DPKG_BUILD_DEB) --nocheck pkg-bogus-colon + $(DPKG_BUILD_DEB) --nocheck pkg-bogus-blank + $(DPKG_BUILD_DEB) --nocheck pkg-bogus-fieldname-empty + $(DPKG_BUILD_DEB) --nocheck pkg-bogus-fieldname-partial + $(DPKG_BUILD_DEB) --nocheck pkg-bogus-format-string + + # test installing packages with bogus control files + ! $(DPKG_INSTALL) pkg-bogus-colon.deb + $(call pkg_is_not_installed,pkg-bogus-colon) + ! $(DPKG_INSTALL) pkg-bogus-blank.deb + $(call pkg_is_not_installed,pkg-bogus-blank) + ! $(DPKG_INSTALL) pkg-bogus-fieldname-empty.deb + $(call pkg_is_not_installed,pkg-bogus-fieldname-empty) + ! $(DPKG_INSTALL) pkg-bogus-fieldname-partial.deb + $(call pkg_is_not_installed,pkg-bogus-fieldname-partial) + ! $(DPKG_INSTALL) pkg-bogus-format-string.deb + $(call pkg_is_not_installed,pkg-bogus-format-string) + +test-clean: + rm -f pkg-bogus-colon.deb + rm -f pkg-bogus-blank.deb |