diff options
author | mappu <mappu04@gmail.com> | 2017-05-10 02:20:22 +1200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-05-09 22:20:22 +0800 |
commit | fd76f090a29b229b9e8e089e225f7ca012809090 (patch) | |
tree | 88e601c8a35d6df5aa3b945f76fa4cb339b236c2 /modules/markup/markup_test.go | |
parent | d98a86d2a2f9c12955316aff5723e03f14c0fe5d (diff) | |
download | gitea-fd76f090a29b229b9e8e089e225f7ca012809090.tar.gz gitea-fd76f090a29b229b9e8e089e225f7ca012809090.zip |
markup: microoptimise for many short filenames in directory (#1534)
* markup: microoptimise for many short filenames in directory
Move strings.ToLower() after the early-return length check. This is a safe operation in all cases and should slightly improve directory listing performance when a directory contains many thousands of files with short filenames.
* markup: expand test cases for IsReadmeFile()
Diffstat (limited to 'modules/markup/markup_test.go')
-rw-r--r-- | modules/markup/markup_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/markup/markup_test.go b/modules/markup/markup_test.go index 92caa8ff96..0dd2be3564 100644 --- a/modules/markup/markup_test.go +++ b/modules/markup/markup_test.go @@ -25,6 +25,7 @@ func TestMisc_IsReadmeFile(t *testing.T) { "abcdefg", "abcdefghijklmnopqrstuvwxyz", "test.md.test", + "readmf", } for _, testCase := range trueTestCases { |