]> git.sven.stormbind.net Git - sven/exfatprogs.git/commitdiff
Adjust for new upcase tests
authorSven Hoexter <sven@stormbind.net>
Mon, 3 Feb 2025 15:29:41 +0000 (16:29 +0100)
committerSven Hoexter <sven@stormbind.net>
Mon, 3 Feb 2025 15:29:41 +0000 (16:29 +0100)
* Build-Depend on xxd, used by upcase_table tests.
* Extend PATH variable to run tests.

debian/changelog
debian/control
debian/rules

index 85f030bbe45e252a42157df388e0b93fffcc23db..bc5f3a89db35ef7c356fcdc96791f02e4681de63 100644 (file)
@@ -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 <hoexter@debian.org>  Mon, 03 Feb 2025 09:55:55 +0100
 
index c1487c43ef2cfee61a7c1ce45ed8287837558247..56fcd6f535cf411e701ed9b6567e89698c2501ba 100644 (file)
@@ -2,7 +2,7 @@ Source: exfatprogs
 Section: otherosfs
 Priority: optional
 Maintainer: Sven Hoexter <hoexter@debian.org>
-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
index e3df3d68a572f48dc77da799001cbbad7f2d6d2d..618c2b4e9e9cd6b2e8775f00efbf09e47060134e 100755 (executable)
@@ -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