From 95417ca711a75612da86a25acd20134efdbc0e67 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 17 Oct 2009 22:42:56 -0700 Subject: tests: add unbuffered tee(1)-like helper Buffering enabled in tee(1) was making tests more difficult to debug. --- t/bin/utee | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 t/bin/utee (limited to 't/bin') diff --git a/t/bin/utee b/t/bin/utee new file mode 100755 index 0000000..e48f307 --- /dev/null +++ b/t/bin/utee @@ -0,0 +1,12 @@ +#!/usr/bin/env ruby +# tee(1) as distributed on most(all?) systems is buffered in luserspace +# this only does unbuffered writes (with line-buffered input) to make +# test output appear in real-time +# -*- encoding: binary -*- +$stdin.binmode +$stdout.binmode +fp = File.open(ARGV.shift, "wb") +$stdin.each_line do |line| + fp.syswrite line + $stdout.syswrite line +end -- cgit v1.2.3-24-ge0c7