aboutsummaryrefslogtreecommitdiff
path: root/src/testing/testing_test.go
diff options
context:
space:
mode:
authorAndrei Tudor Călin <mail@acln.ro>2020-04-23 04:04:33 +0300
committerBrad Fitzpatrick <bradfitz@golang.org>2020-04-23 01:34:16 +0000
commit952f7de3b403d2ffb45708ea5f69168bbdbfe1f0 (patch)
tree4ad9bedb812d8323165bf167ada662599c5581d4 /src/testing/testing_test.go
parentf049d911e93b84577577e73108605627ed522409 (diff)
downloadgo-952f7de3b403d2ffb45708ea5f69168bbdbfe1f0.tar.xz
testing: make TempDir work for subtests
ioutil.TempDir doesn't like path separators in its pattern. Modify (*common).TempDir to replace path separators with underscores before using the test name as a pattern for ioutil.TempDir. Fixes #38465. Change-Id: I9e8ae48b99648b2bf9f561762e845165aff01972 Reviewed-on: https://go-review.googlesource.com/c/go/+/229399 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/testing/testing_test.go')
-rw-r--r--src/testing/testing_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/testing/testing_test.go b/src/testing/testing_test.go
index afb35a96d4..07757a8482 100644
--- a/src/testing/testing_test.go
+++ b/src/testing/testing_test.go
@@ -19,6 +19,11 @@ func TestMain(m *testing.M) {
}
func TestTempDir(t *testing.T) {
+ testTempDir(t)
+ t.Run("InSubtest", testTempDir)
+}
+
+func testTempDir(t *testing.T) {
dirCh := make(chan string, 1)
t.Cleanup(func() {
// Verify directory has been removed.