From cbffab246997fb5a06211dfb706b54e5ae5bb59f Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 16:58:51 +0200 Subject: Adding upstream version 1.21.22. Signed-off-by: Daniel Baumann --- tests/t-unpack-hardlink/Makefile | 56 ++++++++++++++++++++++ .../pkg-hardlink/DEBIAN/conffiles | 2 + .../t-unpack-hardlink/pkg-hardlink/DEBIAN/control | 8 ++++ 3 files changed, 66 insertions(+) create mode 100644 tests/t-unpack-hardlink/Makefile create mode 100644 tests/t-unpack-hardlink/pkg-hardlink/DEBIAN/conffiles create mode 100644 tests/t-unpack-hardlink/pkg-hardlink/DEBIAN/control (limited to 'tests/t-unpack-hardlink') diff --git a/tests/t-unpack-hardlink/Makefile b/tests/t-unpack-hardlink/Makefile new file mode 100644 index 0000000..3412ca5 --- /dev/null +++ b/tests/t-unpack-hardlink/Makefile @@ -0,0 +1,56 @@ +PKG := pkg-hardlink + +TESTS_DEB := $(PKG) + +include ../Test.mk + +$(PKG)/test-conffile-link0: + echo "test hard linked conffile" >$@ + link $@ $(PKG)/test-conffile-link1 + +$(PKG)/test-file-link0: + echo "test hard linked file" >$@ + link $@ $(PKG)/test-file-link1 + +$(PKG)/test-fifo-link0: + mkfifo $@ + link $@ $(PKG)/test-fifo-link1 + +$(PKG)/test-null-link0: + $(BEROOT) mknod $@ c 1 3 + $(BEROOT) link $@ $(PKG)/test-null-link1 + +$(PKG)/test-ram0-link0: + $(BEROOT) mknod $@ b 1 0 + $(BEROOT) link $@ $(PKG)/test-ram0-link1 + +TEST_LINKS := \ + $(PKG)/test-conffile-link0 \ + $(PKG)/test-file-link0 \ + $(PKG)/test-fifo-link0 \ + # EOL + +ifdef DPKG_AS_ROOT +TEST_LINKS += \ + $(PKG)/test-null-link0 \ + $(PKG)/test-ram0-link0 \ + # EOL +endif + +build-hook: $(TEST_LINKS) + +clean-hook: + rm -f $(PKG)/test-conffile-link0 $(PKG)/test-conffile-link1 + rm -f $(PKG)/test-file-link0 $(PKG)/test-file-link1 + rm -f $(PKG)/test-fifo-link0 $(PKG)/test-fifo-link1 + rm -f $(PKG)/test-null-link0 $(PKG)/test-null-link1 + rm -f $(PKG)/test-ram0-link0 $(PKG)/test-ram0-link1 + +test-case: + # test unpacking hardlinks + $(DPKG_INSTALL) pkg-hardlink.deb + $(call pkg_is_installed,pkg-hardlink) + +test-clean: + $(DPKG_PURGE) pkg-hardlink + diff --git a/tests/t-unpack-hardlink/pkg-hardlink/DEBIAN/conffiles b/tests/t-unpack-hardlink/pkg-hardlink/DEBIAN/conffiles new file mode 100644 index 0000000..4634045 --- /dev/null +++ b/tests/t-unpack-hardlink/pkg-hardlink/DEBIAN/conffiles @@ -0,0 +1,2 @@ +/test-conffile-link0 +/test-conffile-link1 diff --git a/tests/t-unpack-hardlink/pkg-hardlink/DEBIAN/control b/tests/t-unpack-hardlink/pkg-hardlink/DEBIAN/control new file mode 100644 index 0000000..c513f9c --- /dev/null +++ b/tests/t-unpack-hardlink/pkg-hardlink/DEBIAN/control @@ -0,0 +1,8 @@ +Package: pkg-hardlink +Version: 0.0-1 +Section: test +Priority: extra +Maintainer: Dpkg Developers +Architecture: all +Description: test package - unpack hardlinks + -- cgit v1.2.3