about summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/t0020-validate-cache.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/t0020-validate-cache.sh b/tests/t0020-validate-cache.sh index 7e7379a..657765d 100755 --- a/tests/t0020-validate-cache.sh +++ b/tests/t0020-validate-cache.sh
@@ -66,7 +66,13 @@ test_expect_success 'verify cache-size=1021' '
66 cgit_url "bar/diff" && 66 cgit_url "bar/diff" &&
67 cgit_url "bar/patch" && 67 cgit_url "bar/patch" &&
68 ls cache >output && 68 ls cache >output &&
69 test_line_count = 13 output 69 test_line_count = 13 output &&
70 cgit_url "foo/ls_cache" >output.full &&
71 strip_headers <output.full >output &&
72 test_line_count = 13 output &&
73 # Check that ls_cache output is cached correctly
74 cgit_url "foo/ls_cache" >output.second &&
75 test_cmp output.full output.second
70' 76'
71 77
72test_done 78test_done