c95cc5ec56
This allows tests to run in parallel as well as letting us use "prove" or another TAP harness to run the tests. Git's test framework requires Git to be fully built before letting any tests run, so add a new target to the top-level Makefile which builds all of Git instead of just libgit.a and make the "test" target depend on that. Signed-off-by: John Keeping <john@keeping.me.uk>
70 řádky
1.4 KiB
Bash
Spustitelný soubor
70 řádky
1.4 KiB
Bash
Spustitelný soubor
#!/bin/sh
|
|
|
|
test_description='Validate cache'
|
|
. ./setup.sh
|
|
|
|
test_expect_success 'verify cache-size=0' '
|
|
|
|
rm -f cache/* &&
|
|
sed -i -e "s/cache-size=1021$/cache-size=0/" cgitrc &&
|
|
cgit_url "" &&
|
|
cgit_url "foo" &&
|
|
cgit_url "foo/refs" &&
|
|
cgit_url "foo/tree" &&
|
|
cgit_url "foo/log" &&
|
|
cgit_url "foo/diff" &&
|
|
cgit_url "foo/patch" &&
|
|
cgit_url "bar" &&
|
|
cgit_url "bar/refs" &&
|
|
cgit_url "bar/tree" &&
|
|
cgit_url "bar/log" &&
|
|
cgit_url "bar/diff" &&
|
|
cgit_url "bar/patch" &&
|
|
ls cache >output &&
|
|
test_line_count = 0 output
|
|
'
|
|
|
|
test_expect_success 'verify cache-size=1' '
|
|
|
|
rm -f cache/* &&
|
|
sed -i -e "s/cache-size=0$/cache-size=1/" cgitrc &&
|
|
cgit_url "" &&
|
|
cgit_url "foo" &&
|
|
cgit_url "foo/refs" &&
|
|
cgit_url "foo/tree" &&
|
|
cgit_url "foo/log" &&
|
|
cgit_url "foo/diff" &&
|
|
cgit_url "foo/patch" &&
|
|
cgit_url "bar" &&
|
|
cgit_url "bar/refs" &&
|
|
cgit_url "bar/tree" &&
|
|
cgit_url "bar/log" &&
|
|
cgit_url "bar/diff" &&
|
|
cgit_url "bar/patch" &&
|
|
ls cache >output &&
|
|
test_line_count = 1 output
|
|
'
|
|
|
|
test_expect_success 'verify cache-size=1021' '
|
|
|
|
rm -f cache/* &&
|
|
sed -i -e "s/cache-size=1$/cache-size=1021/" cgitrc &&
|
|
cgit_url "" &&
|
|
cgit_url "foo" &&
|
|
cgit_url "foo/refs" &&
|
|
cgit_url "foo/tree" &&
|
|
cgit_url "foo/log" &&
|
|
cgit_url "foo/diff" &&
|
|
cgit_url "foo/patch" &&
|
|
cgit_url "bar" &&
|
|
cgit_url "bar/refs" &&
|
|
cgit_url "bar/tree" &&
|
|
cgit_url "bar/log" &&
|
|
cgit_url "bar/diff" &&
|
|
cgit_url "bar/patch" &&
|
|
ls cache >output &&
|
|
test_line_count = 13 output
|
|
'
|
|
|
|
test_done
|