Skip to content

Commit

Permalink
Skip regs test
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsaezm committed Jul 5, 2023
1 parent 5da242b commit 8adcb6a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Documentation/backend_test_health.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ Tests skipped by each supported backend:
* 11 broken - pie mode
* pie skipped = 2
* 2 upstream issue - https://github.com/golang/go/issues/29322
* ppc64le skipped = 13
* 8 broken
* ppc64le skipped = 11
* 6 broken
* 1 broken - global variable symbolication
* 4 not implemented
* windows skipped = 5
Expand Down
3 changes: 3 additions & 0 deletions pkg/terminal/command_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -975,6 +975,9 @@ func TestTruncateStacktrace(t *testing.T) {
func TestIssue1493(t *testing.T) {
// The 'regs' command without the '-a' option should only return
// general purpose registers.
if runtime.GOARCH == "ppc64le" {
t.Skip("skipping, some registers such as vector registers are currently not loaded")
}
withTestTerminal("continuetestprog", t, func(term *FakeTerminal) {
r := term.MustExec("regs")
nr := len(strings.Split(r, "\n"))
Expand Down

0 comments on commit 8adcb6a

Please sign in to comment.