| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
This method takes a block and yields Thread::Backtrace::Location
objects to the block. It does not take arguments, and always
starts at the default frame that caller_locations would start at.
Implements [Feature #16663]
|
|
|
|
|
|
| |
The `CC` found by `AC_CHECK_TOOL` is prefixed by the host triplet
when cross compiling. To search for commands with `AC_CHECK_TOOL`
based on that `CC` means to search also doubly prefixed names.
|
|
|
|
|
| |
Show the linked ruby library name when failed to load extension
built against different ruby library.
|
| |
|
|
|
|
|
|
| |
Backticks method invokes `/bin/sh` when the command contains
quotes, and `sh` clears some environment variables set in
runruby.rb to search the built shared library.
|
|
|
|
| |
https://github.com/ruby/ruby/blob/fdf0f8d81487560f5837dc7e3888a96f7c2b4ec9/tool/lib/test/unit.rb#L1273-L1290
|
|
|
|
|
| |
`make btest-ruby` is run with -q (quiet) option and -v should
remove -q option.
|
| |
|
|
|
|
|
|
|
|
|
| |
The code attempts to read `C_ARG_REGS[leaf_builtin->argc + 1]`, and the
size of `C_ARG_REGS` is `NUM_C_ARG_REGS`. So, the guard condition must
be `leaf_builtin->argc + 1 + 1 <= NUM_C_ARG_REGS`.
This change fixes the off-by-one error. This issue was found by Coverity
Scan.
|
| |
|
|
|
| |
Sizes for darray are size_t now. CC @peterzhu2118
|
|
|
|
|
|
|
|
| |
Using a fake (malloc) RArray is not friendly for the garbage
collector. Fake RArray does not have a heap page, so it causes Variable
Width Allocation to crash when we try to implement it on Arrays.
This commit changes feature_index from a RArray to a darray.
|
|
|
|
|
|
|
| |
Changes size and capacity of darray to size_t to support more
elements.
Adds functions to darray that use GC allocation functions.
|
|
|
|
| |
The modulo in `rb_yjit_code_page_alloc` seems interpreted wrongly.
|
|
|
|
|
|
|
|
|
| |
On the parallel test, workers can be killed because of timeout
and the information for the retrying can be inconsistent.
This patch will skip if the inconsistency is found and report
as an error.
http://ci.rvm.jp/results/trunk-asserts@phosphorus-docker/3834082
|
|
|
|
|
| |
Random.urandom raises a RuntimeError if it is unavailable.
[Bug #13885]
|
| |
|
|
|
|
|
| |
`ObjectSpace::WeakMap#each*` should check key's liveness.
fix [Bug #18586]
|
|
|
|
|
| |
RARRAY_SHARED_ROOT_FLAG is defined as FL_USER5, but we should use
RARRAY_SHARED_ROOT_FLAG instead of depending on that they're equal.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(1) gc_verify_internal_consistency() use barrier locking
for consistency while `during_gc == true` at the end
of the sweep on `RGENGC_CHECK_MODE >= 2`.
(2) `rb_objspace_reachable_objects_from()` is called without
VM synchronization and it checks `during_gc != true`.
So (1) and (2) causes BUG because of `during_gc == true`.
To prevent this error, wait for VM barrier on `during_gc == false`
and introduce VM locking on `rb_objspace_reachable_objects_from()`.
http://ci.rvm.jp/results/trunk-asserts@phosphorus-docker/3830088
|
| |
|
|
|
|
|
| |
1 seconeds is not enough on an specific (busy) machine w/ mjit.
http://ci.rvm.jp/results/trunk-mjit@phosphorus-docker/3830178
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The current example raises the following error.
```ruby
0..chr # => undefined local variable or method `chr' for main:Object (NameError)
```
This PR updates the example to produce the expected behavior.
```ruby
0.chr # => "\x00"
```
|
|
|
|
| |
PSAPI library has not been used since d66c5768caaee16a0c2c2c641185.
|
|
|
|
| |
https://github.com/ruby/rdoc/commit/a93e1bcd68
|
|
|
|
|
|
| |
So that the generated `.rdoc_options` file is loadable.
https://github.com/ruby/rdoc/commit/6cf6e1647b
|
|
|
|
| |
https://github.com/ruby/rdoc/commit/8166b84cf3
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(https://github.com/ruby/rdoc/pull/821)
This patch makes sure we only load relative code. Hence when coding or
testing rdoc, we'll be sure to always be using the correct code.
Discussion started at https://github.com/ruby/rdoc/pull/817.
Signed-off-by: Ulysse Buonomo <buonomo.ulysse@gmail.com>
https://github.com/ruby/rdoc/commit/aa41bd48eb
Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
|
|
|
|
| |
look-ahead rule
This improves the performance in some cases.
`rdoc .../gems/sinatra-2.1.0/README.md` takes 10.5 sec. before this
change, and 7.1 sec. after this change.
`make rdoc` of ruby/ruby takes 19.3 sec. before this change, 18.1 sec.
after this change.
https://github.com/ruby/rdoc/commit/7cf8281e3e
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
https://github.com/rubygems/rubygems/commit/666f3cc724
|
|
|
|
|
|
| |
sources
https://github.com/rubygems/rubygems/commit/9712262d90
|
| |
|
|
|
|
|
| |
Set `--page-dir` option so that direct rdoc call is consistent
with `make html`.
|
|
|
|
| |
Cached mark stack chunks should also be freed when freeing objspace.
|
| |
|
| |
|
|
|
|
| |
https://github.com/ruby/ipaddr/commit/6edf6ee6c3
|
|
|
|
| |
https://github.com/ruby/ipaddr/commit/77fe1fca0a
|
|
|
|
|
|
|
|
|
|
|
| |
Before it would be left as an IPv6 mask causing `to_range` to fail.
```
>> IPAddr.new("::2").native.to_range
/opt/rubies/3.0.3/lib/ruby/3.0.0/ipaddr.rb:479:in `set': invalid address (IPAddr::InvalidAddressError)
```
https://github.com/ruby/ipaddr/commit/af485192f3
|