aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* add encoding conversion from/to CESU-8Martin Dürst2019-07-141-0/+22
| | | | | | | | | | | | | | | Add encoding conversion (transcoding) from UTF-8 to CESU-8 and back. CESU-8 is an encoding similar to UTF-8, but encodes codepoints above U+FFFF as two surrogates, these surrogates again being encoded as if they were UTF-8 codepoints. This preserves the same binary sorting order as in UTF-16. It is also somewhat similar (although not exactly identical) to an encoding used internally by Java. This completes issue #15995. enc/trans/cesu_8.trans: Add encoding conversion from/to CESU-8 test/ruby/test_transcode.rb: Add tests for above
* Relaxed delta of nanosec from Float timeNobuyoshi Nakada2019-07-131-1/+1
|
* Fixed duplicate test nameNobuyoshi Nakada2019-07-121-1/+1
|
* Check exception flag as a bool [Bug #15987]Nobuyoshi Nakada2019-07-115-0/+36
|
* Revert "parse.y: Deprecate flip-flops"Nobuyoshi Nakada2019-07-111-2/+0
| | | | | | This reverts commit bae638ad5b782c44c80efe33834cb9039279af46. [Feature #5400]
* $LOAD_PATH.resolve_feature_pathNobuyoshi Nakada2019-07-111-3/+3
| | | | Moved from RubyVM. [Feature #15903]
* remove an unused variable.Tanaka Akira2019-07-111-1/+0
|
* WEBrick::HTTPResponse create tempfile if required.Tanaka Akira2019-07-111-0/+40
| | | | | | | | | | | | | | | | | | | | | WEBrick::HTTPProxyServer implementes HTTP proxy using WEBrick and Net::HTTP. WEBrick accepts HTTP/1.0 clients and Net::HTTP uses always HTTP/1.1. However HTTP/1.1 supports chunked transfer coding HTTP/1.0 doesn't. Chunked transfer coding doesn't require that content-length before the content is sent. But non-chunked transfer coding require content-length before the content is sent. So, when HTTP/1.0 clients connects WEBrick::HTTPProxyServer and origin server returns chunked response, WEBrick::HTTPProxyServer needs to store whole content to know the length of it. This patch do it using tempfile.
* Restore support library for only test files that are digest and csv.Hiroshi SHIBATA2019-07-093-2/+24
|
* Restore support library for only test files.Hiroshi SHIBATA2019-07-095-4/+72
|
* Check indent of `end` against `else` if presentNobuyoshi Nakada2019-07-081-5/+6
|
* Get rid of toplevel methodsNobuyoshi Nakada2019-07-081-22/+8
|
* Message to pipe should end with a newlineNobuyoshi Nakada2019-07-071-10/+14
|
* Enable indentation warning against `if` just after `else`Nobuyoshi Nakada2019-07-071-5/+8
| | | | | | | | | | | | | ```ruby if false puts 'false' else if true puts 'true' end # -:5: warning: mismatched indentations at 'end' with 'if' at 3 end ``` [Feature #15990]
* Added assertions for Unicode escaped CHAR scanner eventsNobuyoshi Nakada2019-07-061-0/+11
|
* Fix segfault when using method reference operator without using resultJeremy Evans2019-07-051-0/+7
| | | | Fixes [Bug #15985]
* Multiple codepoints are not allowed at single character literalNobuyoshi Nakada2019-07-051-0/+1
| | | | It has unintentionally passed since 2.5.
* Support Control- and Meta-aycabta2019-07-041-0/+2
|
* Check commented out line in inputrc correctlyaycabta2019-07-041-0/+22
|
* Parse key sequence more strictlyNobuyoshi Nakada2019-07-041-0/+5
|
* Skip indented comment lines [Bug #15981]Nobuyoshi Nakada2019-07-041-0/+5
|
* Suppress uninitialized instance variable warningsNobuyoshi Nakada2019-07-041-0/+1
|
* Do not dispatch a nil token in ripperNobuyoshi Nakada2019-07-041-0/+6
| | | | | | | As a comment token includes the newline, so delayed newline token just follows it should not be dispatched. [Bug #11485] Co-Authored-By: Jeremy Evans <code@jeremyevans.net>
* Revert self-referencing finalizer warning [Feature #15974]Nobuyoshi Nakada2019-07-041-29/+3
| | | | | | | | | | | | | | | | | | | | It has caused CI failures. * d0cd0866d82a58933e5dccd073c753c0c2ad4eb5 Disable GC during rb_objspace_reachable_object_p * 89cef1c56b3a0f9c5e6ccc22a5044477a4fd16c1 Version guard for [Feature #15974] * 796eeb6339952d92ae1b353d450c7883e589852d. Fix up [Feature #15974] * 928260c2a613bbdd4402c300e0bf86ae7562e52a. Warn in verbose mode on defining a finalizer that captures the object
* Just disable inlining with local varaible for nowTakashi Kokubun2019-07-031-0/+14
| | | | | | | | | | | This partially reverts commit 712a66b0741605f5b2db670a292b9bb352f8a716. The previous fix made CI strange like: http://ci.rvm.jp/results/trunk-vm-asserts@silicon-docker/2124178 Let me just downgrade the behavior for now and deal with it later. [Bug #15971]
* Fix up [Feature #15974]Nobuyoshi Nakada2019-07-031-3/+29
| | | | | | * Fixed warning condition * Fixed function signature * Use ident hash
* Revert "Avoid corrupting VM stack on inlined setlocal"Koichi Sasada2019-07-031-14/+0
| | | | | This reverts commit ea30dd702512ff9df34fe8c71c825f8f901bf5b1. because it fails when VM_CHECK_MODE=1.
* Check that String#scrub block does not modify receiverJeremy Evans2019-07-021-0/+13
| | | | | | | Similar to the check used for String#gsub. Can fix possible segfault. Fixes [Bug #15941]
* Make String#-@ not freeze receiver if called on unfrozen subclass instanceJeremy Evans2019-07-021-0/+16
| | | | | | | | | rb_fstring behavior in this case is to freeze the receiver. I'm not sure if that should be changed, so this takes the conservative approach of duping the receiver in String#-@ before passing to rb_fstring. Fixes [Bug #15926]
* Implement Array#minmaxJeremy Evans2019-07-021-0/+19
| | | | | | | | | Array#minmax was previous not implemented, so calling #minmax on array was actually calling Enumerable#minmax. This is a simple implementation of #minmax by just calling rb_ary_min and rb_ary_max, which improves performance significantly. Fixes [Bug #15929]
* Fix timezone issue for logger period's testsYusuke Endoh2019-07-021-0/+85
| | | | | | This is a retry of 181b966e7553ac53d034266a7cdc18664d080814. "Revert "Add a missing tests for Logger::Period module"" is also reverted.
* Revert "Add a missing tests for Logger::Period module"Koichi Sasada2019-07-021-85/+0
| | | | This reverts commit 181b966e7553ac53d034266a7cdc18664d080814.
* Avoid corrupting VM stack on inlined setlocalTakashi Kokubun2019-07-021-0/+14
| | | | | | | | | | | | | setlocal relies on cfp->ep, and frame-omitted method inlining introduced in Ruby 2.7 kept it wrong. This change might slow down frame-omitted method inlining for cfp->ep manipulation, and it obviously complicates the implementaion more. By introducing an optimization that changes Ruby's local variable to C local variable, we could optimize it and simplify the cfp->ep manipulation later. [Bug #15971]
* Add a missing tests for Logger::Period moduleAnton Davydov2019-07-021-0/+85
| | | | Closes: https://github.com/ruby/ruby/pull/2266
* The behavior of statx(2) depends on the filesystemNobuyoshi Nakada2019-07-021-1/+1
| | | | | birthtime may not be supported on some filesystems, and NotImplementedError can be raised. [Bug #15972]
* Clean up temporary expired cert fileNobuyoshi Nakada2019-07-021-0/+10
|
* Clean up temporary directory for raccNobuyoshi Nakada2019-07-023-19/+17
|
* Adjust jit_support file path.Hiroshi SHIBATA2019-07-024-4/+4
|
* with_different_ofs.rb has been moved tooNobuyoshi Nakada2019-07-022-2/+2
|
* Renamed to get rid of name clashNobuyoshi Nakada2019-07-021-1/+1
|
* Fixed the wrong path for COVERAGE.Hiroshi SHIBATA2019-07-021-1/+1
| | | | ref. c3c0e3f5c9444c197779cb242de46dfffda79dec
* Split test files for test-framework that are test-unit and minitest to tool ↵Hiroshi SHIBATA2019-07-0217-2800/+0
| | | | direcotry.
* Move to tool/lib from test/lib.Hiroshi SHIBATA2019-07-0222-6045/+7
|
* Raise TypeError if calling ENV.freezeJeremy Evans2019-07-011-0/+4
| | | | | | | Previously, you could call ENV.freeze, but it would not have the desired effect, as you could still modify ENV. Fixes [Bug #15920]
* marshal.c: check instance variable countNobuyoshi Nakada2019-07-011-1/+13
| | | | | * marshal.c (w_ivar_each): ensure that no instance variable was removed while dumping other instance variables. [Bug #15968]
* marshal.c: check instance variable countNobuyoshi Nakada2019-07-011-0/+32
| | | | | * marshal.c (w_obj_each): ensure that no instance variable was added while dumping other instance variables. [Bug #15968]
* Fixed inadvertent ID creation in rb_iv_getNobuyoshi Nakada2019-07-011-0/+9
|
* Assert obsolete method warnings in IPAddrNobuyoshi Nakada2019-07-011-3/+9
|
* Return the result of the block given to assert_warning/assert_no_warningNobuyoshi Nakada2019-07-011-2/+6
|
* Call deprecated method only inside assert_warning blockNobuyoshi Nakada2019-07-011-5/+3
|