List for cgit developers and users
 help / color / mirror / Atom feed
* [PATCH v2 1/2] tests/: Do not use `sed -i`
@ 2013-04-09 18:02 cgit
  2013-04-09 18:02 ` [PATCH v2 2/2] t0107: Skip ZIP tests if unzip(1) isn't available cgit
  2013-04-09 18:13 ` [PATCH v2 1/2] tests/: Do not use `sed -i` Jason
  0 siblings, 2 replies; 4+ messages in thread
From: cgit @ 2013-04-09 18:02 UTC (permalink / raw)


"-i" isn't part of the POSIX standard and doesn't work on several
platforms such as OpenBSD. Use a temporary file instead.

Signed-off-by: Lukas Fleischer <cgit at cryptocrack.de>
---
Now uses a temporary file in order not to lose the exit status of
cgit_url.

 tests/t0010-validate-html.sh  | 4 ++--
 tests/t0020-validate-cache.sh | 9 ++++++---
 2 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/tests/t0010-validate-html.sh b/tests/t0010-validate-html.sh
index 5bd0a25..ca08d69 100755
--- a/tests/t0010-validate-html.sh
+++ b/tests/t0010-validate-html.sh
@@ -8,8 +8,8 @@ test_url()
 {
 	tidy_opt="-eq"
 	test -z "$NO_TIDY_WARNINGS" || tidy_opt+=" --show-warnings no"
-	cgit_url "$1" >tidy-$test_count || return
-	sed -ie "1,4d" tidy-$test_count || return
+	cgit_url "$1" >tidy-$test_count.tmp || return
+	sed -e "1,4d" tidy-$test_count.tmp >tidy-$test_count || return
 	"$tidy" $tidy_opt tidy-$test_count
 	rc=$?
 
diff --git a/tests/t0020-validate-cache.sh b/tests/t0020-validate-cache.sh
index 1910b47..7e7379a 100755
--- a/tests/t0020-validate-cache.sh
+++ b/tests/t0020-validate-cache.sh
@@ -6,7 +6,8 @@ test_description='Validate cache'
 test_expect_success 'verify cache-size=0' '
 
 	rm -f cache/* &&
-	sed -i -e "s/cache-size=1021$/cache-size=0/" cgitrc &&
+	sed -e "s/cache-size=1021$/cache-size=0/" cgitrc >cgitrc.tmp &&
+	mv -f cgitrc.tmp cgitrc &&
 	cgit_url "" &&
 	cgit_url "foo" &&
 	cgit_url "foo/refs" &&
@@ -27,7 +28,8 @@ test_expect_success 'verify cache-size=0' '
 test_expect_success 'verify cache-size=1' '
 
 	rm -f cache/* &&
-	sed -i -e "s/cache-size=0$/cache-size=1/" cgitrc &&
+	sed -e "s/cache-size=0$/cache-size=1/" cgitrc >cgitrc.tmp &&
+	mv -f cgitrc.tmp cgitrc &&
 	cgit_url "" &&
 	cgit_url "foo" &&
 	cgit_url "foo/refs" &&
@@ -48,7 +50,8 @@ test_expect_success 'verify cache-size=1' '
 test_expect_success 'verify cache-size=1021' '
 
 	rm -f cache/* &&
-	sed -i -e "s/cache-size=1$/cache-size=1021/" cgitrc &&
+	sed -e "s/cache-size=1$/cache-size=1021/" cgitrc >cgitrc.tmp &&
+	mv -f cgitrc.tmp cgitrc &&
 	cgit_url "" &&
 	cgit_url "foo" &&
 	cgit_url "foo/refs" &&
-- 
1.8.2.675.gda3bb24.dirty





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-04-09 18:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-09 18:02 [PATCH v2 1/2] tests/: Do not use `sed -i` cgit
2013-04-09 18:02 ` [PATCH v2 2/2] t0107: Skip ZIP tests if unzip(1) isn't available cgit
2013-04-09 18:13   ` Jason
2013-04-09 18:13 ` [PATCH v2 1/2] tests/: Do not use `sed -i` Jason

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).