diff options
author | Jakob Unterwurzacher | 2016-09-25 15:05:09 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-09-25 16:43:17 +0200 |
commit | 2050c7f3b3822a4a3329d4ba5b146d269ef05b4d (patch) | |
tree | 69e5639a02498e37fa4f1aa3af6f605f756f42cc /tests/reverse/correctness_test.go | |
parent | f8da264222f7348c6b9e6dd9d372200f850d2878 (diff) |
reverse: add gcmsiv flag and associated tests
Diffstat (limited to 'tests/reverse/correctness_test.go')
-rw-r--r-- | tests/reverse/correctness_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/reverse/correctness_test.go b/tests/reverse/correctness_test.go new file mode 100644 index 0000000..e268815 --- /dev/null +++ b/tests/reverse/correctness_test.go @@ -0,0 +1,17 @@ +package reverse_test + +import ( + "os" + "testing" +) + +func TestLongnameStat(t *testing.T) { + _, err := os.Stat(dirA + "/" + "") + if err != nil { + t.Error(err) + } + _, err = os.Stat(dirA + "/" + "") + if err != nil { + t.Error(err) + } +} |