1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Reinhard Tartler <siretart@tauware.de>
Date: Sat, 23 Aug 2025 15:07:58 -0400
Subject: Disable segfaulting test
I was not able to reproduce it with Debian's golang 1.24 on the unpatched
sources with the upstream build system. I suspect this has something to do
with debian's golang debhelper, and how it constructs the build area.
---
pkg/tlsclientconfig/tlsclientconfig_test.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/pkg/tlsclientconfig/tlsclientconfig_test.go b/pkg/tlsclientconfig/tlsclientconfig_test.go
index 20b7518..746dabd 100644
--- a/pkg/tlsclientconfig/tlsclientconfig_test.go
+++ b/pkg/tlsclientconfig/tlsclientconfig_test.go
@@ -14,6 +14,7 @@ import (
)
func TestSetupCertificates(t *testing.T) {
+ t.Skip("Debian: TOOD: investigate why this test segfaults")
// Success
tlsc := tls.Config{}
err := SetupCertificates("testdata/full", &tlsc)
|