From: Sven Hoexter Date: Mon, 3 Feb 2025 15:29:41 +0000 (+0100) Subject: Adjust for new upcase tests X-Git-Tag: debian/1.2.7-1~1 X-Git-Url: https://git.sven.stormbind.net/?a=commitdiff_plain;h=6fb3d2a03a0e942c07fd57c468cc98fbd70cd79e;p=sven%2Fexfatprogs.git Adjust for new upcase tests * Build-Depend on xxd, used by upcase_table tests. * Extend PATH variable to run tests. --- 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