1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Skip some more invalid JRuby tests

This commit is contained in:
Nate Berkopec 2019-09-19 15:48:16 +02:00
parent 58acb805f5
commit 4cdfb5cd2f
No known key found for this signature in database
GPG key ID: BDD7A4B8E43906A6
2 changed files with 2 additions and 0 deletions

View file

@ -114,6 +114,7 @@ class Http11ParserTest < Minitest::Test
end
def test_semicolon_in_path
skip_on :jruby # Not yet supported on JRuby, see https://github.com/puma/puma/issues/1978
parser = Puma::HttpParser.new
req = {}
get = "GET /forums/1/path;stillpath/2375?page=1 HTTP/1.1\r\n\r\n"

View file

@ -24,6 +24,7 @@ class TestIntegrationSingle < TestIntegration
def test_term_exit_code
skip_on :windows # no SIGTERM
skip_on :jruby # JVM does not return correct exit code for TERM
pid = cli_server("test/rackup/hello.ru").pid
_, status = send_term_to_server(pid)