From 4cdfb5cd2f3a2d3b47547906c94f15c9533dd929 Mon Sep 17 00:00:00 2001 From: Nate Berkopec Date: Thu, 19 Sep 2019 15:48:16 +0200 Subject: [PATCH] Skip some more invalid JRuby tests --- test/test_http11.rb | 1 + test/test_integration_single.rb | 1 + 2 files changed, 2 insertions(+) diff --git a/test/test_http11.rb b/test/test_http11.rb index dbd08bba..d7f8df6b 100644 --- a/test/test_http11.rb +++ b/test/test_http11.rb @@ -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" diff --git a/test/test_integration_single.rb b/test/test_integration_single.rb index 883974bb..65e6cbfe 100644 --- a/test/test_integration_single.rb +++ b/test/test_integration_single.rb @@ -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)