diff options
| -rw-r--r-- | tests/matrix/matrix_test.go | 4 | ||||
| -rw-r--r-- | tests/reverse/correctness_test.go | 6 | 
2 files changed, 7 insertions, 3 deletions
| diff --git a/tests/matrix/matrix_test.go b/tests/matrix/matrix_test.go index 19a6245..4938ba9 100644 --- a/tests/matrix/matrix_test.go +++ b/tests/matrix/matrix_test.go @@ -886,7 +886,9 @@ func TestMagicNames(t *testing.T) {  // Test that chmod works correctly  func TestChmod(t *testing.T) { -	path := test_helpers.DefaultPlainDir + "/" + t.Name() +	// Note: t.Name() is not available before in Go 1.8 +	tName := "TestChmod" +	path := test_helpers.DefaultPlainDir + "/" + tName  	file, err := os.Create(path)  	if err != nil {  		t.Fatal(err) diff --git a/tests/reverse/correctness_test.go b/tests/reverse/correctness_test.go index 17c4cdd..bb93316 100644 --- a/tests/reverse/correctness_test.go +++ b/tests/reverse/correctness_test.go @@ -213,7 +213,9 @@ func TestTooLongSymlink(t *testing.T) {  // all directory in the path with O_RDONLY. Now it uses O_PATH, which only needs  // the executable bit.  func Test0100Dir(t *testing.T) { -	dir := dirA + "/" + t.Name() +	// Note: t.Name() is not available before in Go 1.8 +	tName := "Test0100Dir" +	dir := dirA + "/" + tName  	err := os.Mkdir(dir, 0700)  	if err != nil {  		t.Fatal(err) @@ -228,7 +230,7 @@ func Test0100Dir(t *testing.T) {  		t.Fatal(err)  	} -	fileReverse := dirC + "/" + t.Name() + "/hello" +	fileReverse := dirC + "/" + tName + "/hello"  	fd, err := os.Open(fileReverse)  	// Make sure the dir can be removed after the test is done  	os.Chmod(dir, 0700) | 
