From 9be4d77249fcba6baead6e27cdb2447d4e6039fa Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 7 Aug 2018 17:28:22 +0000 Subject: libgo: uncomment trace.Stop() call in testing package Fix up the testing package to insure that execution traces work properly (e.g. "-test.trace=" command line option). The call to stop tracing and emit the output file was stubbed out. Reviewed-on: https://go-review.googlesource.com/128275 From-SVN: r263363 --- libgo/go/testing/testing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgo/go') diff --git a/libgo/go/testing/testing.go b/libgo/go/testing/testing.go index f39d5ef..f56dbf8 100644 --- a/libgo/go/testing/testing.go +++ b/libgo/go/testing/testing.go @@ -1159,7 +1159,7 @@ func (m *M) writeProfiles() { m.deps.StopCPUProfile() // flushes profile to disk } if *traceFile != "" { - // trace.Stop() // flushes trace to disk + trace.Stop() // flushes trace to disk } if *memProfile != "" { f, err := os.Create(toOutputDir(*memProfile)) -- cgit v1.1