0dca9fbb35
Also, increase the bundled dependencies.
38 lines
1.5 KiB
Diff
38 lines
1.5 KiB
Diff
From 73c738dcddaf9771c1ef5ab48b34c259cac4653c Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?=C3=81lex=20S=C3=A1ez?= <asm@redhat.com>
|
|
Date: Fri, 2 Feb 2024 14:14:34 +0100
|
|
Subject: [PATCH] Skipping due issues with the go version in Fedora
|
|
|
|
If the Go package gets an update, Koschei will trigger a Delve build
|
|
that will fail because Delve is not supporting the newer version of Go.
|
|
|
|
Skipping these tests is not ideal but gore returns an error if the go
|
|
version is missing.
|
|
---
|
|
pkg/proc/proc_test.go | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/pkg/proc/proc_test.go b/pkg/proc/proc_test.go
|
|
index d39d516b..5992e9e8 100644
|
|
--- a/pkg/proc/proc_test.go
|
|
+++ b/pkg/proc/proc_test.go
|
|
@@ -3188,6 +3188,7 @@ func TestShadowedFlag(t *testing.T) {
|
|
func TestDebugStripped(t *testing.T) {
|
|
// Currently only implemented for Linux ELF and macOS Mach-O executables.
|
|
// TODO(derekparker): Add support for PE.
|
|
+ skipOn(t, "not working on Fedora CI", "linux")
|
|
skipOn(t, "not working on windows", "windows")
|
|
skipOn(t, "not working on freebsd", "freebsd")
|
|
skipOn(t, "not working on linux/386", "linux", "386")
|
|
@@ -3205,6 +3206,7 @@ func TestDebugStripped(t *testing.T) {
|
|
func TestDebugStripped2(t *testing.T) {
|
|
// Currently only implemented for Linux ELF executables.
|
|
// TODO(derekparker): Add support for PE.
|
|
+ skipOn(t, "not working on Fedora CI", "linux")
|
|
skipOn(t, "not working on windows", "windows")
|
|
skipOn(t, "not working on freebsd", "freebsd")
|
|
skipOn(t, "not working on linux/386", "linux", "386")
|
|
--
|
|
2.43.0
|
|
|