From 6fb3d2a03a0e942c07fd57c468cc98fbd70cd79e Mon Sep 17 00:00:00 2001 From: Sven Hoexter Date: Mon, 3 Feb 2025 16:29:41 +0100 Subject: [PATCH] Adjust for new upcase tests * Build-Depend on xxd, used by upcase_table tests. * Extend PATH variable to run tests. --- debian/changelog | 2 ++ debian/control | 2 +- debian/rules | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 85f030b..bc5f3a8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ exfatprogs (1.2.7-1) UNRELEASED; urgency=medium * New upstream release. + * Build-Depend on xxd, used by upcase_table tests. + * Extend PATH variable to run tests. -- Sven Hoexter Mon, 03 Feb 2025 09:55:55 +0100 diff --git a/debian/control b/debian/control index c1487c4..56fcd6f 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: exfatprogs Section: otherosfs Priority: optional Maintainer: Sven Hoexter -Build-Depends: debhelper-compat (= 13), pkgconf +Build-Depends: debhelper-compat (= 13), pkgconf, xxd Standards-Version: 4.7.0 Rules-Requires-Root: no Homepage: https://github.com/exfatprogs/exfatprogs diff --git a/debian/rules b/debian/rules index e3df3d6..618c2b4 100755 --- a/debian/rules +++ b/debian/rules @@ -10,7 +10,8 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all override_dh_auto_test: ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),) dh_auto_test - export PATH="$(shell pwd)/fsck:$$PATH"; cd tests; ./test_fsck.sh + export PATH="$(shell pwd)/fsck:$(shell pwd)/dump:$(shell pwd)/mkfs:$$PATH"; \ + cd tests; ./test_fsck.sh rm tests/exfat.img endif -- 2.39.5