diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 09:40:31 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 09:40:31 +0000 |
commit | b86570f63e533abcbcb97c2572e0e5732a96307b (patch) | |
tree | cabc83be691530ae685c45a8bc7620ccc0e1ebdf /tests/t-control-no-arch/Makefile | |
parent | Initial commit. (diff) | |
download | dpkg-upstream.tar.xz dpkg-upstream.zip |
Adding upstream version 1.20.13.upstream/1.20.13upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/t-control-no-arch/Makefile')
-rw-r--r-- | tests/t-control-no-arch/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/t-control-no-arch/Makefile b/tests/t-control-no-arch/Makefile new file mode 100644 index 0000000..48b79fd --- /dev/null +++ b/tests/t-control-no-arch/Makefile @@ -0,0 +1,22 @@ +include ../Test.mk + +test-case: + # test building package with missing Architecture field. + ! $(DPKG_BUILD_DEB) pkg-no-arch + + # build bogus packages + $(DPKG_BUILD_DEB) --nocheck pkg-no-arch + + # test handling of package without the Architecture field + ! $(DPKG_INSTALL) pkg-no-arch.deb + $(call pkg_is_not_installed,pkg-no-arch) + # these ancient/bogus packages need to be forced now + $(DPKG_INSTALL) --force-architecture pkg-no-arch.deb + $(call pkg_is_installed,pkg-no-arch) + ! $(call stdout_has,$(DPKG_QUERY) --status pkg-no-arch,^Architecture:) + $(DPKG_PURGE) pkg-no-arch + # Clear the available file to avoid missing Architecture warnings + $(BEROOT) $(DPKG) --clear-avail + +test-clean: + rm -f pkg-no-arch.deb |