summaryrefslogtreecommitdiff
path: root/test/linkx.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/linkx.go')
-rw-r--r--test/linkx.go12
1 files changed, 5 insertions, 7 deletions
diff --git a/test/linkx.go b/test/linkx.go
index 12d446ffc..151b6db1e 100644
--- a/test/linkx.go
+++ b/test/linkx.go
@@ -1,20 +1,18 @@
-// $G $D/$F.go && $L -X main.tbd hello $F.$A && ./$A.out
-
-// NOTE: This test is not run by 'run.go' and so not run by all.bash.
-// To run this test you must use the ./run shell script.
+// skip
// Copyright 2012 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.
// Test the -X facility of the gc linker (6l etc.).
+// This test is run by linkx_run.go.
package main
var tbd string
+var overwrite string = "dibs"
func main() {
- if tbd != "hello" {
- println("BUG: test/linkx", len(tbd), tbd)
- }
+ println(tbd)
+ println(overwrite)
}