about summary refs log tree commit homepage
path: root/t/t0006-reopen-logs.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/t0006-reopen-logs.sh')
-rwxr-xr-xt/t0006-reopen-logs.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/t0006-reopen-logs.sh b/t/t0006-reopen-logs.sh
index 430959c..a6e7a17 100755
--- a/t/t0006-reopen-logs.sh
+++ b/t/t0006-reopen-logs.sh
@@ -62,11 +62,11 @@ t_begin "rotated stderr is clean" && {
 }
 
 t_begin "server is now writing logs to new stderr" && {
-        before_rot=$(wc -c < $r_rot)
-        before_err=$(wc -c < $r_err)
+        before_rot=$(count_bytes < $r_rot)
+        before_err=$(count_bytes < $r_err)
         test xtrue = x$(curl -sSf http://$listen/ 2> $curl_err)
-        after_rot=$(wc -c < $r_rot)
-        after_err=$(wc -c < $r_err)
+        after_rot=$(count_bytes < $r_rot)
+        after_err=$(count_bytes < $r_err)
         test $after_rot -eq $before_rot
         test $after_err -gt $before_err
 }