Package: release.debian.org
Severity: normal
Tags: trixie
X-Debbugs-Cc: [email protected],
[email protected]
Control: affects -1 + src:golang-github-cyphar-filepath-securejoin
User: [email protected]
Usertags: pu
[ Reason ]
Skip two flaky tests which make the package to FTBFS. Bug #1102300.
[ Impact ]
Users trying to rebuild from source might find that the package unexpectedly
fails to build.
[ Tests ]
I've checked that the package builds ok on the systems where it used to fail.
[ Risks ]
Very low. No code changes, we are merely disabling two tests.
[ Checklist ]
[X] *all* changes are documented in the d/changelog
[X] I reviewed all changes and I approve them
[X] attach debdiff against the package in (old)stable
[X] the issue is verified as fixed in unstable
[ Changes ]
Skip two tests.
[ Other info ]
Change is trivial, I've already uploaded the package.
diff -Nru golang-github-cyphar-filepath-securejoin-0.3.4/debian/changelog
golang-github-cyphar-filepath-securejoin-0.3.4/debian/changelog
--- golang-github-cyphar-filepath-securejoin-0.3.4/debian/changelog
2024-10-20 14:07:28.000000000 +0200
+++ golang-github-cyphar-filepath-securejoin-0.3.4/debian/changelog
2026-09-16 19:40:00.000000000 +0200
@@ -1,3 +1,10 @@
+golang-github-cyphar-filepath-securejoin (0.3.4-3+deb13u1) trixie;
urgency=medium
+
+ * Team upload.
+ * Skip two flaky tests. Closes: #1102300.
+
+ -- Santiago Vila <[email protected]> Wed, 16 Sep 2026 19:40:00 +0200
+
golang-github-cyphar-filepath-securejoin (0.3.4-3) unstable; urgency=medium
* Team upload.
diff -Nru golang-github-cyphar-filepath-securejoin-0.3.4/debian/rules
golang-github-cyphar-filepath-securejoin-0.3.4/debian/rules
--- golang-github-cyphar-filepath-securejoin-0.3.4/debian/rules 2024-10-20
14:07:28.000000000 +0200
+++ golang-github-cyphar-filepath-securejoin-0.3.4/debian/rules 2026-09-16
19:40:00.000000000 +0200
@@ -1,13 +1,16 @@
#!/usr/bin/make -f
+# Flaky tests
+SKIP = TestMkdirAllHandle_RacingRename|TestPartialLookup_RacingRename
+
%:
dh $@ --buildsystem=golang --with=golang
# don't fail tests on slow architectures
override_dh_auto_test:
ifeq (,$(filter $(DEB_HOST_ARCH), riscv64))
- dh_auto_test -- -timeout=20m
+ dh_auto_test -- -timeout=20m -skip="$(SKIP)"
else
- -dh_auto_test -- -timeout=20min
+ -dh_auto_test -- -timeout=20min -skip="$(SKIP)"
endif