mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/link/internal/ld: temporarily add skip for new portion of TestElfBindNow
Skip newly added sections in TestElfBindNow from elf_test.go temporarily pending resolution of failures on loong64 and ppc64le. Change-Id: I22e0e52c9fbbcad88a4d0088f631ed7be15bf9da Reviewed-on: https://go-review.googlesource.com/c/go/+/580776 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz@google.com>
This commit is contained in:
parent
734fd7a949
commit
ed2671aa15
1 changed files with 43 additions and 39 deletions
|
|
@ -339,6 +339,9 @@ func TestElfBindNow(t *testing.T) {
|
||||||
t.Fatalf("DT_FLAGS_1 DF_1_PIE got: %v, want: %v", gotDf1Pie, test.wantDf1Pie)
|
t.Fatalf("DT_FLAGS_1 DF_1_PIE got: %v, want: %v", gotDf1Pie, test.wantDf1Pie)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Skipping this newer portion of the test temporarily pending resolution of problems on ppc64le, loonpg64, possibly others.
|
||||||
|
if false {
|
||||||
|
|
||||||
for _, wsroname := range test.wantSecsRO {
|
for _, wsroname := range test.wantSecsRO {
|
||||||
// Locate section of interest.
|
// Locate section of interest.
|
||||||
var wsro *elf.Section
|
var wsro *elf.Section
|
||||||
|
|
@ -385,6 +388,7 @@ func TestElfBindNow(t *testing.T) {
|
||||||
t.Fatalf("test %s failed", test.name)
|
t.Fatalf("test %s failed", test.name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue