]> git.cameronkatri.com Git - cgit.git/blobdiff - tests/t0020-validate-cache.sh
git: update to v2.32.0
[cgit.git] / tests / t0020-validate-cache.sh
index 7e7379a80a898651484b4f395c5e4c3cc21c40e9..657765d897b5da5dc7f13231c8e0fd2467086a05 100755 (executable)
@@ -66,7 +66,13 @@ test_expect_success 'verify cache-size=1021' '
        cgit_url "bar/diff" &&
        cgit_url "bar/patch" &&
        ls cache >output &&
-       test_line_count = 13 output
+       test_line_count = 13 output &&
+       cgit_url "foo/ls_cache" >output.full &&
+       strip_headers <output.full >output &&
+       test_line_count = 13 output &&
+       # Check that ls_cache output is cached correctly
+       cgit_url "foo/ls_cache" >output.second &&
+       test_cmp output.full output.second
 '
 
 test_done