summaryrefslogtreecommitdiff
path: root/src/pkg/debug
diff options
context:
space:
mode:
authorKeith Randall <khr@golang.org>2013-07-19 12:31:42 -0700
committerKeith Randall <khr@golang.org>2013-07-19 12:31:42 -0700
commitdad1cd6a1377e497cdd7afd4b24c01c0f77a659b (patch)
tree7fac4a5f78386915df943092d0e5198475c55e82 /src/pkg/debug
parentf0a9d44c62dd0ef140998481591ccdd22e500497 (diff)
downloadgo-dad1cd6a1377e497cdd7afd4b24c01c0f77a659b.tar.gz
debug/gosym: put pclinetest file in temporary directory
where it belongs. R=rsc CC=golang-dev https://codereview.appspot.com/11596043
Diffstat (limited to 'src/pkg/debug')
-rw-r--r--src/pkg/debug/gosym/pclntab_test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pkg/debug/gosym/pclntab_test.go b/src/pkg/debug/gosym/pclntab_test.go
index 6ec2b6384..35502e8c3 100644
--- a/src/pkg/debug/gosym/pclntab_test.go
+++ b/src/pkg/debug/gosym/pclntab_test.go
@@ -49,7 +49,6 @@ func dotest(self bool) bool {
// the resulting binary looks like it was built from pclinetest.s,
// but we have renamed it to keep it away from the go tool.
pclinetestBinary = filepath.Join(pclineTempDir, "pclinetest")
- pclinetestBinary = "pclinetest"
command := fmt.Sprintf("go tool 6a -o %s.6 pclinetest.asm && go tool 6l -H linux -E main -o %s %s.6",
pclinetestBinary, pclinetestBinary, pclinetestBinary)
cmd := exec.Command("sh", "-c", command)