Version in base suite: 0.3.4-3 Base version: golang-github-cyphar-filepath-securejoin_0.3.4-3 Target version: golang-github-cyphar-filepath-securejoin_0.3.4-3+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/g/golang-github-cyphar-filepath-securejoin/golang-github-cyphar-filepath-securejoin_0.3.4-3.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/g/golang-github-cyphar-filepath-securejoin/golang-github-cyphar-filepath-securejoin_0.3.4-3+deb13u1.dsc changelog | 7 +++++++ rules | 7 +++++-- 2 files changed, 12 insertions(+), 2 deletions(-) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmpju8tn9l1/golang-github-cyphar-filepath-securejoin_0.3.4-3.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmpju8tn9l1/golang-github-cyphar-filepath-securejoin_0.3.4-3+deb13u1.dsc: no acceptable signature found 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 12:07:28.000000000 +0000 +++ golang-github-cyphar-filepath-securejoin-0.3.4/debian/changelog 2026-09-16 17:40:00.000000000 +0000 @@ -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 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 12:07:28.000000000 +0000 +++ golang-github-cyphar-filepath-securejoin-0.3.4/debian/rules 2026-09-16 17:40:00.000000000 +0000 @@ -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