about summary refs log tree commit homepage
path: root/t/t0300-async_sinatra.sh
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2013-01-24 22:59:16 +0000
committerEric Wong <normalperson@yhbt.net>2013-02-01 21:46:27 +0000
commitcbff7b0892148b037581541184364e0e91d2a138 (patch)
tree0a747c049c943330b9e0331798d679e0e85791c2 /t/t0300-async_sinatra.sh
parenta552fb90230eb65c28897398c7786dc9a13446ca (diff)
downloadrainbows-cbff7b0892148b037581541184364e0e91d2a138.tar.gz
POSIX already stipulates tee(1) must be unbuffered.  I think my
decision to use utee was due to my being misled by a bug in
older curl where -N did not work as advertised (but --no-buffer
did).
Diffstat (limited to 't/t0300-async_sinatra.sh')
-rwxr-xr-xt/t0300-async_sinatra.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t0300-async_sinatra.sh b/t/t0300-async_sinatra.sh
index a623916..ef612b8 100755
--- a/t/t0300-async_sinatra.sh
+++ b/t/t0300-async_sinatra.sh
@@ -25,9 +25,9 @@ t_begin "setup and start" && {
 
 t_begin "send async requests off in parallel" && {
         t0=$(date +%s)
-        ( curl --no-buffer -sSf http://$listen/$n 2>> $curl_err | utee $a) &
-        ( curl --no-buffer -sSf http://$listen/$n 2>> $curl_err | utee $b) &
-        ( curl --no-buffer -sSf http://$listen/$n 2>> $curl_err | utee $c) &
+        ( curl --no-buffer -sSf http://$listen/$n 2>> $curl_err | tee $a) &
+        ( curl --no-buffer -sSf http://$listen/$n 2>> $curl_err | tee $b) &
+        ( curl --no-buffer -sSf http://$listen/$n 2>> $curl_err | tee $c) &
 }
 
 t_begin "ensure elapsed requests were processed in parallel" && {