aboutsummaryrefslogtreecommitdiff
path: root/tests
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/setup.sh8
-rwxr-xr-xtests/t0107-snapshot.sh4
2 files changed, 2 insertions, 10 deletions
diff --git a/tests/setup.sh b/tests/setup.sh
index 1d8677a..a573444 100755
--- a/tests/setup.sh
+++ b/tests/setup.sh
@@ -98,12 +98,4 @@ cgit_url()
CGIT_CONFIG="$PWD/cgitrc" QUERY_STRING="url=$1" cgit
}
-strip_headers () {
- while read -r line
- do
- test -z "$line" && break
- done
- cat
-}
-
test -z "$CGIT_TEST_NO_CREATE_REPOS" && setup_repos
diff --git a/tests/t0107-snapshot.sh b/tests/t0107-snapshot.sh
index 6cf7aaa..053062c 100755
--- a/tests/t0107-snapshot.sh
+++ b/tests/t0107-snapshot.sh
@@ -16,7 +16,7 @@ test_expect_success 'check html headers' '
'
test_expect_success 'strip off the header lines' '
- strip_headers <tmp >master.tar.gz
+ tail -n +6 tmp > master.tar.gz
'
test_expect_success 'verify gzip format' '
@@ -51,7 +51,7 @@ test_expect_success 'check HTML headers (zip)' '
'
test_expect_success 'strip off the header lines (zip)' '
- strip_headers <tmp >master.zip
+ tail -n +6 tmp >master.zip
'
if test -n "$(which unzip 2>/dev/null)"; then