about summary refs log tree commit diff stats
path: root/tests/setup.sh
diff options
context:
space:
mode:
authorJohn Keeping2013-05-18 18:46:38 +0100
committerJason A. Donenfeld2013-05-22 12:53:06 +0200
commit75bfec6448b44e26c06736253f8ab0197a6652f7 (patch)
treedf0fff85104702712c6d569a14f2749a8461970e /tests/setup.sh
parentshared.c: use die_errno() where appropriate (diff)
downloadcgit-75bfec6448b44e26c06736253f8ab0197a6652f7.tar.gz
cgit-75bfec6448b44e26c06736253f8ab0197a6652f7.zip
tests: introduce strip_header() helper function
This means that we can avoid hardcoding the number of headers we expect
CGit to generate in test cases and simply remove whatever headers happen
to by there when we are checking body content.

Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'tests/setup.sh')
-rwxr-xr-xtests/setup.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/setup.sh b/tests/setup.sh index a573444..1d8677a 100755 --- a/tests/setup.sh +++ b/tests/setup.sh
@@ -98,4 +98,12 @@ cgit_url()
98 CGIT_CONFIG="$PWD/cgitrc" QUERY_STRING="url=$1" cgit 98 CGIT_CONFIG="$PWD/cgitrc" QUERY_STRING="url=$1" cgit
99} 99}
100 100
101strip_headers () {
102 while read -r line
103 do
104 test -z "$line" && break
105 done
106 cat
107}
108
101test -z "$CGIT_TEST_NO_CREATE_REPOS" && setup_repos 109test -z "$CGIT_TEST_NO_CREATE_REPOS" && setup_repos