~james-page/ubuntu/utopic/gccgo-go/cgo-support

« back to all changes in this revision

Viewing changes to test/linkx.go

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-01-27 09:18:55 UTC
  • Revision ID: package-import@ubuntu.com-20140127091855-zxfshmykfsyyw4b2
Tags: upstream-1.2
ImportĀ upstreamĀ versionĀ 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// $G $D/$F.go && $L -X main.tbd hello $F.$A && ./$A.out
 
2
 
 
3
// NOTE: This test is not run by 'run.go' and so not run by all.bash.
 
4
// To run this test you must use the ./run shell script.
 
5
 
 
6
// Copyright 2012 The Go Authors.  All rights reserved.
 
7
// Use of this source code is governed by a BSD-style
 
8
// license that can be found in the LICENSE file.
 
9
 
 
10
// Test the -X facility of the gc linker (6l etc.).
 
11
 
 
12
package main
 
13
 
 
14
var tbd string
 
15
 
 
16
func main() {
 
17
        if tbd != "hello" {
 
18
                println("BUG: test/linkx", len(tbd), tbd)
 
19
        }
 
20
}