Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions pkg/proc/stepping_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,6 @@ func TestRangeOverFuncNext(t *testing.T) {
})

t.Run("TestPanickyIterator2", func(t *testing.T) {
skipOn(t, "flaky stepping timeout", "riscv64")
testseq2intl(t, fixture, grp, p, nil, []seqTest{
funcBreak(t, "main.TestPanickyIterator2"),
{contContinue, 125},
Expand Down Expand Up @@ -1604,7 +1603,6 @@ func TestRangeOverFuncNextInlined(t *testing.T) {
})

t.Run("TestPanickyIterator2", func(t *testing.T) {
skipOn(t, "flaky stepping timeout", "riscv64")
testseq2intl(t, fixture, grp, p, nil, []seqTest{
funcBreak(t, "main.TestPanickyIterator2"),
{contContinue, 125},
Expand Down
5 changes: 5 additions & 0 deletions pkg/proc/test/support.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,11 @@ func BuildFixture(t testing.TB, name string, flags BuildFlags) Fixture {
buildFlags = append(buildFlags, "-ldflags=-compressdwarf=false")
}
}
// Disable DWARF compression on riscv64 due to flate decompressor hangs
// in CI: https://delve.teamcity.com/buildConfiguration/Delve_AggregatorBuild/78674
if runtime.GOARCH == "riscv64" {
buildFlags = append(buildFlags, "-ldflags=-compressdwarf=false")
}
if flags&Trimpath != 0 {
buildFlags = append(buildFlags, "-trimpath")
}
Expand Down
1 change: 0 additions & 1 deletion pkg/proc/variables_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,6 @@ func TestVariableEvaluation2(t *testing.T) {
}

func TestSetVariable(t *testing.T) {
skipOn(t, "flaky timeout during process initialization", "riscv64")
const errorPrefix = "ERROR:"
var testcases = []struct {
name string
Expand Down
Loading