Package: release.debian.org
Severity: normal
Tags: trixie
X-Debbugs-Cc: [email protected],
[email protected]
Control: affects -1 + src:golang-github-google-cel-go
User: [email protected]
Usertags: pu
[ Reason ]
Disable two flaky tests. Closes: #1102312 (FTBFS bug).
[ Impact ]
The package does not always build from source.
[ Tests ]
I've checked that the package builds ok on the systems where it used to fail.
[ Risks ]
Very low. No real code changes, we are just 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 ]
Disable two flaky tests.
[ Other info ]
The change is quite trivial, so I've already uploaded the package.
diff -Nru golang-github-google-cel-go-0.18.2+ds/debian/changelog
golang-github-google-cel-go-0.18.2+ds/debian/changelog
--- golang-github-google-cel-go-0.18.2+ds/debian/changelog 2024-08-04
03:23:30.000000000 +0200
+++ golang-github-google-cel-go-0.18.2+ds/debian/changelog 2026-09-14
23:50:00.000000000 +0200
@@ -1,3 +1,10 @@
+golang-github-google-cel-go (0.18.2+ds-5+deb13u1) trixie; urgency=medium
+
+ * Team upload.
+ * Disable two flaky tests. Closes: #1102312.
+
+ -- Santiago Vila <[email protected]> Mon, 14 Sep 2026 23:50:00 +0200
+
golang-github-google-cel-go (0.18.2+ds-5) unstable; urgency=medium
* Team upload
diff -Nru golang-github-google-cel-go-0.18.2+ds/debian/rules
golang-github-google-cel-go-0.18.2+ds/debian/rules
--- golang-github-google-cel-go-0.18.2+ds/debian/rules 2024-08-02
00:55:16.000000000 +0200
+++ golang-github-google-cel-go-0.18.2+ds/debian/rules 2026-09-14
23:00:00.000000000 +0200
@@ -3,6 +3,7 @@
#export DH_VERBOSE := 1
export DH_GOLANG_EXCLUDES := server examples codelab repl/appengine/main
repl/main
export BUILDDIR := build
+SKIP = TestInterpreter_InterruptableEval|TestContextEval
%:
dh $@ --builddirectory=$(BUILDDIR) --buildsystem=golang --with=golang
@@ -16,3 +17,6 @@
find
debian/golang-github-google-cel-go-dev/usr/share/gocode/src/github.com/google/cel-go/
\
-type f -exec chmod -x \{\} \;
dh_install -i
+
+override_dh_auto_test:
+ dh_auto_test -- -skip "$(SKIP)"