summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-21LEGAL: made license names themselves links [ci skip]Nobuyoshi Nakada
2020-04-21eval_error.c: default nil as "reverse" is now false [Feature #8661]Nobuyoshi Nakada
2020-04-21NEWS.md: the order of backtrace [Feature #8661] [ci skip]Nobuyoshi Nakada
2020-04-21eval_error.c: revert the "reversed" backtrace [Feature #8661]Yusuke Endoh
Now, the order is good, old-fashioned style: ``` $ ./local/bin/ruby -e 'def foo; raise; end def bar; foo; end def baz; bar; end def qux; baz; end qux ' -e:1:in `foo': unhandled exception from -e:2:in `bar' from -e:3:in `baz' from -e:4:in `qux' from -e:5:in `<main>' ```
2020-04-21rb_memerror: abort immediately卜部昌平
Ditto for adab82b9a71f60ad1c7f4f8c134a5ae9198ab32a. TRY_WITH_GC was found innocent.
2020-04-21Fixed a typo [ci skip]Nobuyoshi Nakada
2020-04-21reroute redefinition of NDEBUG卜部昌平
NDEBUG can be defined via a command-line argument. Should take care of such situations.
2020-04-21__GNUC__ is too lax卜部昌平
Ditto for 4b853932eaa7fa4acf8a0f0c9b7c695bb4f5e76d
2020-04-21TRY_WITH_GC: abort immediately卜部昌平
NoMemoryError is observed on icc but I fail to reproduce so far. Let me see the backtrace on CI.
2020-04-21Fix typos [ci skip]Kazuhiro NISHIYAMA
2020-04-21Fixed incorrect man path with ruby installation pathHiroshi SHIBATA
[Bug #15359][ruby-core:90164]
2020-04-21test/ruby/test_refinement.rb: extend the timeoutYusuke Endoh
https://rubyci.org/logs/rubyci.s3.amazonaws.com/debian-riscv64/ruby-master/log/20200420T083601Z.fail.html.gz
2020-04-21* 2020-04-21 [ci skip]git
2020-04-20vm_dump.c: Do not show C backtrace on riscvYusuke Endoh
Currently, objdump -W miniruby emits some errors on riscv, so I guess that DWARF is corrupted.
2020-04-20Skip JIT tests on riscv64 due to SEGV of cc1Yusuke Endoh
2020-04-20[sync_default_gems.rb] Force reset conflict files to be ignoredNobuyoshi Nakada
[ci skip]
2020-04-20Revert irrelevant change [ci skip]Nobuyoshi Nakada
2020-04-20Removed phony atomic operations for void* and VALUENobuyoshi Nakada
2020-04-20* 2020-04-20 [ci skip]git
2020-04-20Bail out if no atomic operation foundNobuyoshi Nakada
As atomic operations are mandatory now, not-working phony fallback definitions are not only useless but confusing and harmful.
2020-04-19Removed useless VMDEBUG definition [ci skip]Nobuyoshi Nakada
VMDEBUG is always defined as defaulted to 0 in vm_core.h.
2020-04-19Update VMDEBUG reference doc [ci skip]Nguyễn Quang Minh
Since this commit (https://github.com/ruby/ruby/commit/9e1b06e17d27fb4ddf51e9244f205417e9c4dd5c), the VM Debug Level constant is moved from `vm_insnhelper.h` to `vm_core.h`. This PR is a super tiny update to reflect that change so that people won't waste time on searching in a wrong file. Notes: Merged: https://github.com/ruby/ruby/pull/3043 Merged-By: nobu <nobu@ruby-lang.org>
2020-04-19Skip Process#clock_getres specs on AndroidYusuke Endoh
... just like AIX and OpenBSD.
2020-04-19Skip TestRequire#test_loading_fifo_fd_leak on AndroidYusuke Endoh
The test fails due to unknown reason. Need to debug in future, but tentatively skipped.
2020-04-18The pdb header error is printed at stdoutTakashi Kokubun
https://ci.appveyor.com/project/ruby/ruby/builds/32278754/job/90jmky2jq2k0wjv8
2020-04-18Update workflows/mingw.yml - use setup-ruby-pkgs (#3042)MSP-Greg
MSP-Greg/actions-ruby is deprecated... Notes: Merged-By: k0kubun <takashikkbn@gmail.com>
2020-04-19* 2020-04-19 [ci skip]git
2020-04-18Env values removed by ENV.clear are not usedNobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/3041
2020-04-18Bypass env key encoding conversion if unnecessaryNobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/3041
2020-04-18Hoisted out reset_by_modified_envNobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/3041
2020-04-18Environment variable values are not case-insensitiveNobuyoshi Nakada
Only the names are case-sensitive. Notes: Merged: https://github.com/ruby/ruby/pull/3041
2020-04-18[ruby/reline] Add ed_search_next_historyaycabta
https://github.com/ruby/reline/commit/ca750b676b
2020-04-18[ruby/reline] Add ed_search_prev_historyaycabta
https://github.com/ruby/reline/commit/e9ae288825
2020-04-18[ruby/reline] Rename wrong test nameaycabta
https://github.com/ruby/reline/commit/8480db575b
2020-04-18[ruby/reline] Use vi_search_{prev,next} to incremental searchaycabta
https://github.com/ruby/reline/commit/cab312f584
2020-04-18[ruby/reline] Rename search_history with incremental_search_historyaycabta
https://github.com/ruby/reline/commit/d563063ea0
2020-04-18Compare environment variable names in those manor [Bug #16798]Nobuyoshi Nakada
Notes: Merged: https://github.com/ruby/ruby/pull/3040
2020-04-18power_assert repository is transferred to ruby/power_assertKazuki Tsujimoto
2020-04-18Make sure newarraykwsplat accesses a correct indexTakashi Kokubun
on stack when local_stack_p is enabled. This fixes `RB_FL_TEST_RAW:"RB_FL_ABLE(obj)"` assertion failure on power_assert's test with JIT enabled.
2020-04-18RUBY_SPECIAL_SHIFT and RUBY_FL_USHIFT are mandatory for rp in lldb_cruby.pyNobuyoshi Nakada
2020-04-18Super TestJIT#setup to skip unsupported envsTakashi Kokubun
Slightly simplifying 8d6aa06620b316904fd10d0cab1b85e07f2fbf67
2020-04-18Skip a too-unstable test on s390x-linuxTakashi Kokubun
In the last 26-ish hours, it has failed 5 times: https://travis-ci.org/github/ruby/ruby/jobs/676497718 https://travis-ci.org/github/ruby/ruby/jobs/676480295 https://travis-ci.org/github/ruby/ruby/jobs/676103216 https://travis-ci.org/github/ruby/ruby/jobs/676057967 https://travis-ci.org/github/ruby/ruby/jobs/676055113 and I don't think anybody has been working on it right now. To make CI result report of s390x-linux useful, let's skip it until the test is improved to be more stable.
2020-04-18test/ruby/test_jit_debug.rb: Skip unsupported platformsYusuke Endoh
2020-04-18power_assert repository is transferred to ruby/power_assertKazuki Tsujimoto
2020-04-17Remove invalid webhook configTakashi Kokubun
According to warnings on Travis, there's no such key. We handle this on webhook side anyway.
2020-04-18* 2020-04-18 [ci skip]git
2020-04-17Compilation error does not impact exit statusTakashi Kokubun
We failed to ignore https://ci.appveyor.com/project/ruby/ruby/builds/32245902/job/xcfxw67uexxysvni
2020-04-17Fix a typo [ci skip]Kazuhiro NISHIYAMA
2020-04-17NEWS.md: Mentioned the removal of NIL/TRUE/FALSE [ci skip]Nobuyoshi Nakada
2020-04-17Removed NIL/TRUE/FALSE from documents tooKazuhiro NISHIYAMA
This is follow up of 62554ca97812b454e78a0a9daf6e962ff7a2f589