From b97be813facc3a763424362ebf6e4c47a8579362 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 13 Oct 2015 20:45:26 +0000 Subject: copyright updates Future updates may use the update-copyright script in gnulib: git ls-files | UPDATE_COPYRIGHT_HOLDER='all contributors' \ UPDATE_COPYRIGHT_USE_INTERVALS=2 \ xargs /path/to/gnulib/build-aux/update-copyright --- test/covshow.rb | 2 +- test/helper.rb | 2 +- test/server_helper.rb | 2 +- test/test_bin.rb | 2 +- test/test_buffer_tmpdir.rb | 2 +- test/test_client_expire.rb | 2 +- test/test_client_max_body_size.rb | 2 +- test/test_config.rb | 2 +- test/test_expect_100.rb | 2 +- test/test_extras_autoindex.rb | 2 +- test/test_extras_exec_cgi.rb | 2 +- test/test_extras_exec_cgi.sh | 2 +- test/test_extras_try_gzip_static.rb | 2 +- test/test_fdmap.rb | 2 +- test/test_input.rb | 2 +- test/test_mt_accept.rb | 2 +- test/test_output_buffering.rb | 2 +- test/test_rack.rb | 2 +- test/test_rack_hijack.rb | 2 +- test/test_reopen_logs.rb | 2 +- test/test_response.rb | 2 +- test/test_serve_static.rb | 2 +- test/test_server.rb | 2 +- test/test_stream_file.rb | 2 +- test/test_unix_socket.rb | 2 +- test/test_wbuf.rb | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) (limited to 'test') diff --git a/test/covshow.rb b/test/covshow.rb index 2fd48c6..1d6367d 100644 --- a/test/covshow.rb +++ b/test/covshow.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) # # this works with the __covmerge method in test/helper.rb diff --git a/test/helper.rb b/test/helper.rb index c86f3e3..5dca23f 100644 --- a/test/helper.rb +++ b/test/helper.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) $stdout.sync = $stderr.sync = Thread.abort_on_exception = true $-w = true if RUBY_VERSION.to_f >= 2.0 diff --git a/test/server_helper.rb b/test/server_helper.rb index 1ce2f29..cc34f4a 100644 --- a/test/server_helper.rb +++ b/test/server_helper.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'helper' require 'timeout' diff --git a/test/test_bin.rb b/test/test_bin.rb index b778a0d..97e672e 100644 --- a/test/test_bin.rb +++ b/test/test_bin.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' class TestBin < Testcase diff --git a/test/test_buffer_tmpdir.rb b/test/test_buffer_tmpdir.rb index 8461346..f1af602 100644 --- a/test/test_buffer_tmpdir.rb +++ b/test/test_buffer_tmpdir.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' require 'sleepy_penguin' diff --git a/test/test_client_expire.rb b/test/test_client_expire.rb index c23a727..0260850 100644 --- a/test/test_client_expire.rb +++ b/test/test_client_expire.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' diff --git a/test/test_client_max_body_size.rb b/test/test_client_max_body_size.rb index 5688f2b..8be2856 100644 --- a/test/test_client_max_body_size.rb +++ b/test/test_client_max_body_size.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' diff --git a/test/test_config.rb b/test/test_config.rb index 00a0c19..08c33db 100644 --- a/test/test_config.rb +++ b/test/test_config.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'helper' require 'rack/lobster' diff --git a/test/test_expect_100.rb b/test/test_expect_100.rb index 868fe3a..1701bca 100644 --- a/test/test_expect_100.rb +++ b/test/test_expect_100.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' diff --git a/test/test_extras_autoindex.rb b/test/test_extras_autoindex.rb index d00a620..5471598 100644 --- a/test/test_extras_autoindex.rb +++ b/test/test_extras_autoindex.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' require 'zlib' diff --git a/test/test_extras_exec_cgi.rb b/test/test_extras_exec_cgi.rb index 6fa4dbb..a9bcd34 100644 --- a/test/test_extras_exec_cgi.rb +++ b/test/test_extras_exec_cgi.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' diff --git a/test/test_extras_exec_cgi.sh b/test/test_extras_exec_cgi.sh index b54a83f..0a6c521 100755 --- a/test/test_extras_exec_cgi.sh +++ b/test/test_extras_exec_cgi.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) # test CGI program, this remains portable POSIX shell (not bash) diff --git a/test/test_extras_try_gzip_static.rb b/test/test_extras_try_gzip_static.rb index ae99130..874f700 100644 --- a/test/test_extras_try_gzip_static.rb +++ b/test/test_extras_try_gzip_static.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' require 'zlib' diff --git a/test/test_fdmap.rb b/test/test_fdmap.rb index 3525dca..e611862 100644 --- a/test/test_fdmap.rb +++ b/test/test_fdmap.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'helper' diff --git a/test/test_input.rb b/test/test_input.rb index 63cf6ce..add7598 100644 --- a/test/test_input.rb +++ b/test/test_input.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' require 'digest/md5' diff --git a/test/test_mt_accept.rb b/test/test_mt_accept.rb index 37813d4..fb02430 100644 --- a/test/test_mt_accept.rb +++ b/test/test_mt_accept.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' require 'rack/lobster' diff --git a/test/test_output_buffering.rb b/test/test_output_buffering.rb index 9e2e400..7f75702 100644 --- a/test/test_output_buffering.rb +++ b/test/test_output_buffering.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' require 'digest/md5' diff --git a/test/test_rack.rb b/test/test_rack.rb index 653f1b0..f601425 100644 --- a/test/test_rack.rb +++ b/test/test_rack.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'helper' require 'rack/lobster' diff --git a/test/test_rack_hijack.rb b/test/test_rack_hijack.rb index 101f085..d326bcd 100644 --- a/test/test_rack_hijack.rb +++ b/test/test_rack_hijack.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' diff --git a/test/test_reopen_logs.rb b/test/test_reopen_logs.rb index 8acac6b..f8aa7b8 100644 --- a/test/test_reopen_logs.rb +++ b/test/test_reopen_logs.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' require 'rack/commonlogger' diff --git a/test/test_response.rb b/test/test_response.rb index 2e9a7ea..19adbd6 100644 --- a/test/test_response.rb +++ b/test/test_response.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' diff --git a/test/test_serve_static.rb b/test/test_serve_static.rb index b6875bd..98cf57b 100644 --- a/test/test_serve_static.rb +++ b/test/test_serve_static.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' require 'rack/file' diff --git a/test/test_server.rb b/test/test_server.rb index 50e739a..2ed43a1 100644 --- a/test/test_server.rb +++ b/test/test_server.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' diff --git a/test/test_stream_file.rb b/test/test_stream_file.rb index 54344f4..4bc3b2e 100644 --- a/test/test_stream_file.rb +++ b/test/test_stream_file.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'helper' require 'timeout' diff --git a/test/test_unix_socket.rb b/test/test_unix_socket.rb index 337ccba..712e99f 100644 --- a/test/test_unix_socket.rb +++ b/test/test_unix_socket.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'server_helper' diff --git a/test/test_wbuf.rb b/test/test_wbuf.rb index e6f8790..0eacb08 100644 --- a/test/test_wbuf.rb +++ b/test/test_wbuf.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2013, Eric Wong and all contributors +# Copyright (C) 2013-2015 all contributors # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt) require_relative 'helper' require 'timeout' -- cgit v1.2.3-24-ge0c7