diff options
author | Pavel Rosický <[email protected]> | 2021-09-24 00:33:36 +0200 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2022-06-06 18:13:01 +0900 |
commit | 4bc7cef866dc4e4e5c2d94cdd65dd24cc7b7555d (patch) | |
tree | 8d2d5014cb03cd671658d493ae2edf11212f3792 /test/cgi/test_cgi_util.rb | |
parent | 5d014bcb61cbc443be6e6bd722573bf9e482a9be (diff) |
[ruby/cgi] jruby support
https://github.com/ruby/cgi/commit/93326fb622
Diffstat (limited to 'test/cgi/test_cgi_util.rb')
-rw-r--r-- | test/cgi/test_cgi_util.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/cgi/test_cgi_util.rb b/test/cgi/test_cgi_util.rb index 5a2d07b328..5baf87db75 100644 --- a/test/cgi/test_cgi_util.rb +++ b/test/cgi/test_cgi_util.rb @@ -105,6 +105,7 @@ class CGIUtilTest < Test::Unit::TestCase end def test_cgi_escape_html_large + return if RUBY_ENGINE == 'jruby' ulong_max, size_max = RbConfig::LIMITS.values_at("ULONG_MAX", "SIZE_MAX") return unless ulong_max < size_max # Platforms not concerned |