summaryrefslogtreecommitdiffstats
path: root/src/cmd/go/testdata/script/test_timeout.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/go/testdata/script/test_timeout.txt')
-rw-r--r--src/cmd/go/testdata/script/test_timeout.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/cmd/go/testdata/script/test_timeout.txt b/src/cmd/go/testdata/script/test_timeout.txt
new file mode 100644
index 0000000..4de4df4
--- /dev/null
+++ b/src/cmd/go/testdata/script/test_timeout.txt
@@ -0,0 +1,23 @@
+[short] skip
+env GO111MODULE=off
+cd a
+
+# If no timeout is set explicitly, 'go test' should set
+# -test.timeout to its internal deadline.
+go test -v . --
+stdout '10m0s'
+
+# An explicit -timeout argument should be propagated to -test.timeout.
+go test -v -timeout 30m . --
+stdout '30m0s'
+
+-- a/timeout_test.go --
+package t
+import (
+ "flag"
+ "fmt"
+ "testing"
+)
+func TestTimeout(t *testing.T) {
+ fmt.Println(flag.Lookup("test.timeout").Value.String())
+}