Skip to content

Commit ec319d6

Browse files
aclementsgopherbot
authored andcommitted
runtime: skip TestTracebackInlined if inlining is disabled
This should fix the noopt builders. Change-Id: I49aa374f4d372803599cd2d2a7a29833b379ce1b Reviewed-on: https://go-review.googlesource.com/c/go/+/475376 Run-TryBot: Austin Clements <[email protected]> Reviewed-by: Michael Knyszek <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Michael Pratt <[email protected]> Auto-Submit: Austin Clements <[email protected]>
1 parent 166e5ee commit ec319d6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/runtime/traceback_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import (
1919

2020
// Test traceback printing of inlined frames.
2121
func TestTracebackInlined(t *testing.T) {
22+
testenv.SkipIfOptimizationOff(t) // This test requires inlining
2223
check := func(t *testing.T, r *ttiResult, funcs ...string) {
2324
t.Helper()
2425

0 commit comments

Comments
 (0)