From: Eric Wong <e@80x24.org>
To: yahns-public@yhbt.net
Subject: [PATCH] test: allow setting TAIL env to watch error logs
Date: Thu, 27 Apr 2017 00:54:51 +0000 [thread overview]
Message-ID: <20170427005451.19296-1-e@80x24.org> (raw)
Setting TAIL=1 will automatically use the portable "tail -f".
This can be helpful in diagnosing failures during development.
GNU tail users may set TAIL="tail -F" (or "gtail -F")
to use the "-F" ("--follow=name") option to track changes
across SIGUSR1 log reopening testing.
---
test/server_helper.rb | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/test/server_helper.rb b/test/server_helper.rb
index cb11e79..9ef15c6 100644
--- a/test/server_helper.rb
+++ b/test/server_helper.rb
@@ -65,12 +65,29 @@ def server_helper_teardown
@srv.close if defined?(@srv) && !@srv.closed?
@ru.close! if defined?(@ru) && @ru
check_err if defined?(@err)
+ Timeout.timeout(30) do
+ Process.kill(:TERM, @tail_pid)
+ Process.waitpid(@tail_pid)
+ end if @tail_pid
end
def server_helper_setup
@srv = TCPServer.new(ENV["TEST_HOST"] || "127.0.0.1", 0)
@err = tmpfile(%w(srv .err))
@ru = nil
+ @tail_pid = nil
+ case tail = ENV['TAIL']
+ when '1'
+ tail = 'tail -f' # POSIX
+ when nil, '0'
+ tail = nil
+ # else : allow users to specify 'tail -F' or 'gtail -F' for GNU
+ end
+ if tail
+ cmd = tail.split(/\s+/)
+ cmd << @err.path
+ @tail_pid = spawn(*cmd)
+ end
end
def mkserver(cfg, srv = @srv)
--
EW
reply other threads:[~2017-04-27 0:54 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://yhbt.net/yahns/README
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170427005451.19296-1-e@80x24.org \
--to=e@80x24.org \
--cc=yahns-public@yhbt.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://yhbt.net/yahns.git/
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 read-only IMAP folder(s) and NNTP newsgroup(s).