mirror of
https://github.com/golang/go
synced 2024-11-08 12:06:18 -07:00
e14b021977
This adds support to the runtime/trace test for saving traces collected by its tests to disk and a script in internal/trace that uses this to collect canned traces for the trace test suite. This can be used to add to the test suite when we introduce a new trace format version. Change-Id: Id9ac1ff312235bf02f982fdfff8a827f54035758 Reviewed-on: https://go-review.googlesource.com/32290 Run-TryBot: Austin Clements <austin@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Dmitry Vyukov <dvyukov@google.com>
20 lines
663 B
Bash
Executable File
20 lines
663 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2016 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
# mkcanned.bash creates canned traces for the trace test suite using
|
|
# the current Go version.
|
|
|
|
set -e
|
|
|
|
if [ $# != 1 ]; then
|
|
echo "usage: $0 <label>" >&2
|
|
exit 1
|
|
fi
|
|
|
|
go test -run ClientServerParallel4 -trace "testdata/http_$1_good" net/http
|
|
go test -run 'TraceStress$|TraceStressStartStop$' runtime/trace -savetraces
|
|
mv ../../runtime/trace/TestTraceStress.trace "testdata/stress_$1_good"
|
|
mv ../../runtime/trace/TestTraceStressStartStop.trace "testdata/stress_start_stop_$1_good"
|