diff options
| author | Russ Cox <rsc@golang.org> | 2015-07-28 13:37:13 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2015-07-29 22:32:23 +0000 |
| commit | bd5ca22232d67810d9996aa9c67059e20253e6f8 (patch) | |
| tree | b10560e4c802eede7cf05e7a14e9d1d6e2777551 /src/runtime/trace/trace_stack_test.go | |
| parent | 80c98fa901b2f393ef013ec9074630c948e3f8d4 (diff) | |
| download | go-bd5ca22232d67810d9996aa9c67059e20253e6f8.tar.xz | |
runtime/trace: remove existing Skips
The skips added in CL 12579, based on incorrect time stamps,
should be sufficient to identify and exclude all the time-related
flakiness on these systems.
If there is other flakiness, we want to find out.
For #10512.
Change-Id: I5b588ac1585b2e9d1d18143520d2d51686b563e3
Reviewed-on: https://go-review.googlesource.com/12746
Reviewed-by: Austin Clements <austin@google.com>
Diffstat (limited to 'src/runtime/trace/trace_stack_test.go')
| -rw-r--r-- | src/runtime/trace/trace_stack_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/trace/trace_stack_test.go b/src/runtime/trace/trace_stack_test.go index 58139ba144..f3baf0bb69 100644 --- a/src/runtime/trace/trace_stack_test.go +++ b/src/runtime/trace/trace_stack_test.go @@ -21,8 +21,8 @@ import ( // In particular that we strip bottom uninteresting frames like goexit, // top uninteresting frames (runtime guts). func TestTraceSymbolize(t *testing.T) { - skipTraceTestsIfNeeded(t) testenv.MustHaveExec(t) + buf := new(bytes.Buffer) if err := Start(buf); err != nil { t.Fatalf("failed to start tracing: %v", err) |
