| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-05-16 | leakchecker.rb: show test name | Nobuyoshi Nakada | |
| When multiple autoclose IO objects are leaked too. | |||
| 2020-05-08 | Workaround for Minitest5 | Hiroshi SHIBATA | |
| Notes: Merged: https://github.com/ruby/ruby/pull/3087 | |||
| 2020-05-08 | Check encodings of STDIN,STDOUT,STDERR too | Kazuhiro NISHIYAMA | |
| 2020-05-07 | leakchecker.rb: try `lsof` | Nobuyoshi Nakada | |
| 2020-05-06 | Makes nil-safe | Nobuyoshi Nakada | |
| 2020-05-06 | Ignore FDs kept by system library | Nobuyoshi Nakada | |
| `getaddrinfo` on macOS seems keeping FDs to query host names internally. | |||
| 2020-05-06 | leakchecker.rb: search /dev/fd too | Nobuyoshi Nakada | |
| It is more popular than /proc/self/fd. | |||
| 2020-05-05 | envutil.rb: Also alias to #name | Nobuyoshi Nakada | |
| 2020-04-23 | Initialize the class variable for Minitest::Unit.current_repeat_count | Nobuyoshi Nakada | |
| 2020-04-23 | Expand retrying test file names to realpath | Nobuyoshi Nakada | |
| As well as worker processes do in Test::Unit::Worker#run. | |||
| 2020-04-17 | Rescue EPIPE in _report | Nobuyoshi Nakada | |
| Instead of letting callers rescue the error always. | |||
| 2020-04-17 | core_assertions.rb: fixed fd leak at timeout | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/3039 | |||
| 2020-04-17 | envutil.rb: not try to close pipes twice | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/3039 | |||
| 2020-03-30 | Migrate {assert,refute}_patch_exits for compatibility with Minitest5 | Hiroshi SHIBATA | |
| 2020-03-08 | Specify explicit separator not to be affected by $; | Nobuyoshi Nakada | |
| 2020-03-04 | tool/lib/test/unit: support TESTS='-- -ext-' again | 卜部昌平 | |
| There is a test directory named test/-ext-. Because this directry starts with a hyphen, we have to cheat test/unit in order for it to run the tests underneath. TESTS='-- -ext' worked for a long time. Let's not break that maneuver. | |||
| 2020-03-04 | Narrow the check target. | Koichi Sasada | |
| Call GC.verify_internal_consistency only for Gem related test on i386-solaris. | |||
| 2020-03-03 | Limit the debug code conditon so that it runs only under i386-solaris | Yusuke Endoh | |
| 2020-03-03 | add debug code for Solaris | Koichi Sasada | |
| Check heap consistency after each test to debug. https://rubyci.org/logs/rubyci.s3.amazonaws.com/unstable11x/ruby-master/log/20200303T012406Z.fail.html.gz | |||
| 2020-03-01 | show backtrace. | Koichi Sasada | |
| assert_nothing_raised doesn't show the backtrace if an exception is thrown in a block. This patch shows this backtrace. | |||
| 2020-02-28 | respect --test-order=random | Koichi Sasada | |
| Now --test-order=random is simply ignored. This patch respect this option. Notes: Merged: https://github.com/ruby/ruby/pull/2932 | |||
| 2020-02-27 | MiniTest::Unit.options has default :seed | Koichi Sasada | |
| MiniTest::Unit (superclass of Test::Unit::Runner) does not has default seed parameter, but assigned after initializing. However some tests use MiniTest::Unit without setup of seed option and it cases unexpected test failures. To solve this issue, add default seed parameter 42. | |||
| 2020-02-27 | `srand($seed)` at the beginning of each test | Koichi Sasada | |
| To avoid `srand(0)` effect in the other tests, call `srand($seed)` at the beginning of each test (setup). [Feature #16655] | |||
| 2020-02-27 | Revert "`srand($seed)` at the beginning of each test" | Koichi Sasada | |
| This reverts commit 7c1553e91db07fed4fed3287b50304f1c69a685d. It breaks some tests. | |||
| 2020-02-27 | `srand($seed)` at the beginning of each test | Koichi Sasada | |
| To avoid `srand(0)` effect in the other tests, call `srand($seed)` at the beginning of each test (setup). [Feature #16655] | |||
| 2020-02-27 | don't ignore `--seed` option | Koichi Sasada | |
| `--seed N` option is just ignored so respect this option. [Feature #16655] Also making "Run options" display pretty. | |||
| 2020-02-11 | Expose assert_no_memory_leak for weakref | Hiroshi SHIBATA | |
| Notes: Merged: https://github.com/ruby/ruby/pull/2900 | |||
| 2020-02-11 | Expose assert_normal_exit for weakref | Hiroshi SHIBATA | |
| Notes: Merged: https://github.com/ruby/ruby/pull/2900 | |||
| 2020-02-07 | Stop auto runner | Nobuyoshi Nakada | |
| Auto runner should not run in forked processes in separated tests. | |||
| 2020-02-07 | No crafted backtrace for SystemExit | Nobuyoshi Nakada | |
| As SystemExit is ignored, it is just useless. | |||
| 2020-02-06 | Fixed the output from separated test in parallel test | Nobuyoshi Nakada | |
| Redirect the output of separated child process to `MiniTest::Unit.output`. | |||
| 2020-02-06 | Add separated assertion count | Nobuyoshi Nakada | |
| 2020-02-05 | Fixed the output from separated test in parallel test | Nobuyoshi Nakada | |
| To output to the STDOUT of the parent process according to the parallel test protocol, should send to the `MiniTest::Unit.output` instead of each own STDOUT. | |||
| 2020-02-05 | Fixed FD leaks | Nobuyoshi Nakada | |
| 2020-02-05 | Get rid of nested string interpolations to be editor-friendly | Nobuyoshi Nakada | |
| 2020-02-04 | just use STDOUT | NARUSE, Yui | |
| 2020-02-04 | On Windows it cannot receive fd except 0..2 | NARUSE, Yui | |
| 2020-02-04 | assert_separately uses their own pipe instead of stdout | NARUSE, Yui | |
| 2020-02-01 | Indent ChangeLog contents [ci skip] | Nobuyoshi Nakada | |
| Separate each entries more obviously as `page-delimiter' works fine. | |||
| 2020-02-01 | Explicitly set the encoding of ChangeLog file to UTF-8 [ci skip] | Nobuyoshi Nakada | |
| 2020-01-28 | Minitest::Unit.current_repeat_count | Koichi Sasada | |
| This method returns loop counter for multi-run (0 start). | |||
| 2020-01-12 | vcs.rb: Allow to empty a part in commit log | Nobuyoshi Nakada | |
| 2020-01-09 | vcs.rb: Get rid of Kernel#open | Nobuyoshi Nakada | |
| 2019-12-27 | Add check_warning_flags to leakchecker | Kazuhiro NISHIYAMA | |
| 2019-12-23 | Fix typo in commit logs by log-fix notes | Nobuyoshi Nakada | |
| 2019-12-20 | Fixed misspellings | Nobuyoshi Nakada | |
| Fixed misspellings reported at [Bug #16437], only in ruby and rubyspec. | |||
| 2019-12-12 | implement make test-all TESTS=--gc-compact | 卜部昌平 | |
| 79eb5e1acac2339c6ec71db723298bdfcd92b233 implemented RUBY_TEST_GC_COMPACT=1 so why not make it also possible via the command line argument. | |||
| 2019-12-12 | support gc_compact_checker on parallel test. | Koichi Sasada | |
| 2019-12-12 | call GC.compact after each test. | Koichi Sasada | |
| RUBY_TEST_GC_COMPACT=1 enables GC.compact checker which calls GC.compact after each test. | |||
| 2019-12-03 | tool/lib/test/unit/parallel.rb: fail explicitly when failing to get io | Yusuke Endoh | |
| `(ulimit -n 30; make test-tool)` fails with unexplicit message: "undefined method `write' for nil:NilClass" due to lack of stdout. This change makes it explicit. [Bug #5577] | |||
