From: Eric Wong <bofh@yhbt.net> To: unicorn-public@yhbt.net Subject: [PATCH 2/3] test_helper: remove unused `chunked_spawn' Date: Sun, 26 Jan 2020 05:33:32 +0000 [thread overview] Message-ID: <20200126053333.28163-3-bofh@yhbt.net> (raw) In-Reply-To: <20200126053333.28163-1-bofh@yhbt.net> It was added nearly 11 years ago in commit 6945342a1f0a4caa ("Transfer-Encoding: chunked streaming input support") but never used. --- test/test_helper.rb | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index c21f75d..94a5b1b 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -265,32 +265,6 @@ def wait_for_death(pid) raise "PID:#{pid} never died!" end -# executes +cmd+ and chunks its STDOUT -def chunked_spawn(stdout, *cmd) - fork { - crd, cwr = IO.pipe - crd.binmode - cwr.binmode - crd.sync = cwr.sync = true - - pid = fork { - STDOUT.reopen(cwr) - crd.close - cwr.close - exec(*cmd) - } - cwr.close - begin - buf = crd.readpartial(16384) - stdout.write("#{'%x' % buf.size}\r\n#{buf}") - rescue EOFError - stdout.write("0\r\n") - pid, status = Process.waitpid(pid) - exit status.exitstatus - end while true - } -end - def reset_sig_handlers %w(WINCH QUIT INT TERM USR1 USR2 HUP TTIN TTOU CHLD).each do |sig| trap(sig, "DEFAULT")
next prev parent reply other threads:[~2020-01-26 5:33 UTC|newest] Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-01-26 5:33 [PATCH 0/3] minor test golfing to make worktree smaller Eric Wong 2020-01-26 5:33 ` [PATCH 1/3] test/exec/test_exec: bring worker_processes down to 2 Eric Wong 2020-01-26 5:33 ` Eric Wong [this message] 2020-01-26 5:33 ` [PATCH 3/3] test_upload: use spawn to simplify redirects Eric Wong
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/unicorn/ * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20200126053333.28163-3-bofh@yhbt.net \ --to=bofh@yhbt.net \ --cc=unicorn-public@yhbt.net \ --subject='Re: [PATCH 2/3] test_helper: remove unused `chunked_spawn'\''' \ /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
Code repositories for project(s) associated with this inbox: ../../unicorn.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).