aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby
Commit message (Collapse)AuthorAgeFilesLines
* IO#read always check the provided buffer is mutableJean Boussier2023-11-091-0/+26
| | | | Otherwise you can have work in some circumstance but not in others.
* Skip example for 07df8a5d5ee725eee00632717ea4deead5fc783bHiroshi SHIBATA2023-11-071-7/+9
|
* Fix the CI failure in OpenBSDYusuke Endoh2023-11-061-1/+1
| | | | | | | | | | | LibreSSL seems not to support `scrypt`. https://rubyci.s3.amazonaws.com/openbsd-current/ruby-master/log/20231105T233005Z.fail.html.gz ``` 1) OpenSSL::KDF.scrypt creates the same value with the same input ERROR NoMethodError: undefined method `scrypt' for module OpenSSL::KDF ```
* Disable wrong testNobuyoshi Nakada2023-10-311-1/+2
|
* Missing format stringNobuyoshi Nakada2023-10-311-1/+1
| | | | | Do not use a variable as a format string. Also we usually don't expect non-ascii data in C string literals.
* Update to ruby/spec@d56bd0fBenoit Daloze2023-10-301-202/+204
|
* Revert "OpenSSL::KDF.scrypt needs EVP_PBE_scrypt()"Benoit Daloze2023-10-301-2/+0
| | | | This reverts commit d434765faead1583ca9008bb579067a288085b93.
* OpenSSL::KDF.scrypt needs EVP_PBE_scrypt()Nobuyoshi Nakada2023-10-311-0/+2
|
* Update to ruby/spec@bd7017fBenoit Daloze2023-10-3088-289/+1634
|
* Windows: Prefer USERPROFILE over HOMEPATHLars Kanis2023-10-261-14/+13
| | | | | | Enable the test commented out in ruby/ruby@d0f5dc9eac78ecade459. Extracted from GH-7033, that is for initialization at start up time and this test is unrelated to it.
* M:N thread scheduler for RactorsKoichi Sasada2023-10-121-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch introduce M:N thread scheduler for Ractor system. In general, M:N thread scheduler employs N native threads (OS threads) to manage M user-level threads (Ruby threads in this case). On the Ruby interpreter, 1 native thread is provided for 1 Ractor and all Ruby threads are managed by the native thread. From Ruby 1.9, the interpreter uses 1:1 thread scheduler which means 1 Ruby thread has 1 native thread. M:N scheduler change this strategy. Because of compatibility issue (and stableness issue of the implementation) main Ractor doesn't use M:N scheduler on default. On the other words, threads on the main Ractor will be managed with 1:1 thread scheduler. There are additional settings by environment variables: `RUBY_MN_THREADS=1` enables M:N thread scheduler on the main ractor. Note that non-main ractors use the M:N scheduler without this configuration. With this configuration, single ractor applications run threads on M:1 thread scheduler (green threads, user-level threads). `RUBY_MAX_CPU=n` specifies maximum number of native threads for M:N scheduler (default: 8). This patch will be reverted soon if non-easy issues are found. [Bug #19842]
* BigDecimal#to_s has not changed for fraction partNobuyoshi Nakada2023-10-041-13/+11
| | | | The test for integer part was separated at dc54574adefe.
* [DOC] State the precision of `Process.times` as platform-definedNobuyoshi Nakada2023-10-031-27/+0
| | | | | Remove the bad example that can lead to misunderstanding as if this precision is defined in Ruby.
* Check by integer modulo instead of float stringNobuyoshi Nakada2023-10-031-2/+2
|
* Fix failures when all network interfaces are downNobuyoshi Nakada2023-09-301-0/+6
|
* Adjust CGI spec to pass when ran in isolationAlan Wu2023-09-121-1/+1
| | | | | It failed with `NameError` because `Html3` is defined in the file that `CGI::HtmlExtension` autoloads.
* Make Kernel#lambda raise when given non-literal blockAlan Wu2023-09-122-34/+46
| | | | | | | | | | | | | | | | | Previously, Kernel#lambda returned a non-lambda proc when given a non-literal block and issued a warning under the `:deprecated` category. With this change, Kernel#lambda will always return a lambda proc, if it returns without raising. Due to interactions with block passing optimizations, we previously had two separate code paths for detecting whether Kernel#lambda got a literal block. This change allows us to remove one path, the hack done with rb_control_frame_t::block_code introduced in 85a337f for supporting situations where Kernel#lambda returned a non-lambda proc. [Feature #19777] Co-authored-by: Takashi Kokubun <takashikkbn@gmail.com>
* Update to ruby/spec@96d1072Benoit Daloze2023-09-0484-184/+787
|
* BasicSocket#recv* return `nil` rather than an empty packetJean Boussier2023-08-304-13/+32
| | | | | | | | | | | | | [Bug #19012] man recvmsg(2) states: > Return Value > These calls return the number of bytes received, or -1 if an error occurred. > The return value will be 0 when the peer has performed an orderly shutdown. Not too sure how one is supposed to make the difference between a packet of size 0 and a closed connection.
* [Bug #19784] Fix behaviors against prefix with broken encodingNobuyoshi Nakada2023-08-262-6/+10
| | | | | | - String#start_with? - String#delete_prefix - String#delete_prefix!
* Fix support for dynamic keys. (#8273)Samuel Williams2023-08-241-0/+14
| | | * Skip RBS test.
* Quarantine a very flaky specTakashi Kokubun2023-08-231-9/+13
| | | | | | | | | | | https://github.com/ruby/ruby/actions/runs/5956398507/job/16157091112 This has been extremely flaky on macOS GitHub Actions. Benoit suggested to quarantine it if it's too problematic (it is) and there's no reasonable fix in a short time (it already took too long). So this commit follows the suggestion. We should remove revert this once rb_cloexec_open() is fixed.
* Deprecate Kernel#open and IO support for subprocess creation/forkingMike Dalessio2023-08-106-17/+114
| | | | | | | | | | | | | | | | | Deprecate Kernel#open and IO support for subprocess creation and forking. This deprecates subprocess creation and forking in - Kernel#open - URI.open - IO.binread - IO.foreach - IO.readlines - IO.read - IO.write This behavior is slated to be removed in Ruby 4.0 [Feature #19630]
* Update to ruby/spec@9e278f5Benoit Daloze2023-08-0253-174/+457
|
* Fix encoding switches when RUBYOPT is empty or only spacesBenoit Daloze2023-08-021-0/+7
| | | | * Follow-up of dbbc3583ba432c279f07b1fa0afb0a8a9ba50c91 which broke this.
* `Refinement#refined_class` is now deprecatedNobuyoshi Nakada2023-07-311-1/+1
|
* Add examples of `return` in `eval`Nobuyoshi Nakada2023-07-301-0/+14
|
* Make {Nil,True,False}Class#singleton_method always raise NameErrorJeremy Evans2023-07-263-0/+45
| | | | | | | | {Nil,True,False}Class#singleton_methods always returns [] indicating that there are no singleton methods defined, so #singleton_method should be consistent with that. Fixes [Bug #11064]
* Use the caller location as default filename for eval family of methodsJean Boussier2023-07-247-26/+87
| | | | | | | | | | | | | | | | | | | [Feature #19755] Before (in /tmp/test.rb): ```ruby Object.class_eval("p __FILE__") # => "(eval)" ``` After: ```ruby Object.class_eval("p __FILE__") # => "(eval at /tmp/test.rb:1)" ``` This makes it much easier to track down generated code in case the author forgot to provide a filename argument.
* Add tests for `return` in `BEGIN` and `END` blocksNobuyoshi Nakada2023-07-191-0/+15
|
* Implement Process.warmupJean Boussier2023-07-171-0/+11
| | | | | | | | | | | | [Feature #18885] For now, the optimizations performed are: - Run a major GC - Compact the heap - Promote all surviving objects to oldgen Other optimizations may follow.
* [Bug #19769] Fix range of size 1 in `String#tr`alexandre1842023-07-152-0/+18
|
* Improve ArgumentError message for Module#set_temporary_nameBenoit Daloze2023-07-061-4/+4
|
* Ensure the name given to Module#set_temporary_name is not a valid constant pathBenoit Daloze2023-07-061-2/+17
| | | | Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
* Specs for Module#set_temporary_name should be in their own fileBenoit Daloze2023-07-062-49/+53
|
* Skip a failing spec for the latest bigdecimalTakashi Kokubun2023-07-051-12/+14
|
* Update to ruby/spec@30e1c35Benoit Daloze2023-06-26428-9236/+3581
|
* Allow setting the name of a class or module. (#7483)Samuel Williams2023-06-211-0/+49
| | | | Introduce `Module#set_temporary_name` for setting identifiers for otherwise anonymous modules/classes.
* rb_io_descriptor() is available since 3.1Benoit Daloze2023-06-011-1/+1
|
* Hide the usage of `rb_io_t` where possible. (#7880)Samuel Williams2023-06-011-1/+9
| | | This retries the compatible parts of the previously reverted PR so we can continue to update related code without breaking backwards compatibility.
* Revert "Hide most of the implementation of `struct rb_io`. (#6511)"NARUSE, Yui2023-06-011-9/+1
| | | | | | | | | This reverts commit 18e55fc1e1ec20e8f3166e3059e76c885fc9f8f2. fix [Bug #19704] https://bugs.ruby-lang.org/issues/19704 This breaks compatibility for extension libraries. Such changes need a discussion.
* Hide most of the implementation of `struct rb_io`. (#6511)Samuel Williams2023-05-301-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Add rb_io_path and rb_io_open_descriptor. * Use rb_io_open_descriptor to create PTY objects * Rename FMODE_PREP -> FMODE_EXTERNAL and expose it FMODE_PREP I believe refers to the concept of a "pre-prepared" file, but FMODE_EXTERNAL is clearer about what the file descriptor represents and aligns with language in the IO::Buffer module. * Ensure that rb_io_open_descriptor closes the FD if it fails If FMODE_EXTERNAL is not set, then it's guaranteed that Ruby will be responsible for closing your file, eventually, if you pass it to rb_io_open_descriptor, even if it raises an exception. * Rename IS_EXTERNAL_FD -> RUBY_IO_EXTERNAL_P * Expose `rb_io_closed_p`. * Add `rb_io_mode` to get IO mode. --------- Co-authored-by: KJ Tsanaktsidis <ktsanaktsidis@zendesk.com>
* Refactor guards for Time.new specBenoit Daloze2023-05-291-10/+13
|
* Unify error messages of rb_num2ulong and rb_num2ullPeter Zhu2023-05-291-1/+8
| | | | | The error messages were slightly different due, which causes different behaviour on 32-bit and 64-bit systems.
* Update to ruby/spec@c3677cfBenoit Daloze2023-05-2956-132/+1452
|
* Fix "runs a C function with the global lock unlocked and unlocks IO with the ↵Samuel Williams2023-05-242-17/+17
| | | | | | | | | generic RUBY_UBF_IO" on Windows. (#7848) * Enable borked spec. * Ensure win32 wrappers are visible and used. * Reorganise `read`/`write`/`pipe` in `thread_spec.c`.
* Add a newline at EOF [ci skip]Nobuyoshi Nakada2023-05-241-1/+1
|
* Add support for pread/pwrite on windows. (#7827)Samuel Williams2023-05-243-69/+66
|
* Hash.new: print a deprecation warning when receiving keyword arguments (#7828)Jean byroot Boussier2023-05-234-5/+18
| | | | | | | | | | [Feature #19236] In Ruby 3.3, `Hash.new` shall print a deprecation warning if keyword arguments are passed instead of treating them as an implicit positional Hash. This will allow to safely introduce a `capacity` keyword argument in 3.4 Co-authored-by: Jean Boussier <byroot@ruby-lang.org>
* Fix typo in spec file description [ci skip]Ivanov-Anton2023-05-211-1/+1
| | | fixed typo for spec description