summaryrefslogtreecommitdiff
path: root/libgo/go/cmd/go/testdata/norunexample/test_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/cmd/go/testdata/norunexample/test_test.go')
-rw-r--r--libgo/go/cmd/go/testdata/norunexample/test_test.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/libgo/go/cmd/go/testdata/norunexample/test_test.go b/libgo/go/cmd/go/testdata/norunexample/test_test.go
new file mode 100644
index 0000000000..d2e919838f
--- /dev/null
+++ b/libgo/go/cmd/go/testdata/norunexample/test_test.go
@@ -0,0 +1,10 @@
+package pkg
+
+import (
+ "os"
+ "testing"
+)
+
+func TestBuilt(t *testing.T) {
+ os.Stdout.Write([]byte("A normal test was executed.\n"))
+}