summaryrefslogtreecommitdiff
path: root/tool/test/testunit
Commit message (Collapse)AuthorAgeFilesLines
* s/MJIT/RJIT/Takashi Kokubun2023-03-062-2/+2
|
* Allow strings in assert_pattern_listNobuyoshi Nakada2022-08-191-0/+8
|
* Add tests for assert_pattern_listNobuyoshi Nakada2022-08-181-0/+16
|
* Let testunit use omit or pend instead of skipNobuyoshi Nakada2022-01-164-10/+28
|
* Prepare for removing RubyVM::JIT (#5262)Takashi Kokubun2021-12-132-2/+2
|
* Retry hung up tests verboselyNobuyoshi Nakada2021-10-171-1/+1
|
* Retry hung tests after parallel runsNobuyoshi Nakada2021-10-172-0/+28
|
* Replace unpack with unpack1Nobuyoshi Nakada2021-10-171-2/+2
|
* Use `__dir__`Nobuyoshi Nakada2021-10-151-2/+2
|
* Refactor ordering of testsNobuyoshi Nakada2021-10-042-21/+61
| | | | | | * Split the sorting types into classes. * Apply the same sorting to method sorting under the parallel test.
* Prohibit test method redefinitionNobuyoshi Nakada2021-09-171-9/+4
|
* Fixup 455978cd133f27fab9e2bfa4301efd3b7c7d0462Hiroshi SHIBATA2021-09-131-1/+1
|
* Use capture_output instead of capture_ioHiroshi SHIBATA2021-09-131-2/+2
|
* Removed unsed assertions for rubygemsHiroshi SHIBATA2021-09-111-14/+0
|
* Drop to Ruby 1.8 related codeHiroshi SHIBATA2021-09-111-3/+1
|
* Removed rubinius support from test suiteHiroshi SHIBATA2021-09-111-5/+0
|
* Removed maglev related code because it's not active status nowHiroshi SHIBATA2021-09-111-6/+4
|
* fixup f73f9e1f893409d8b7b42ff5fbda104fdd277cbaHiroshi SHIBATA2021-09-111-1/+1
|
* Replace Test::Assertion and Test::Skip to Test::Unit::AssertionFailedError ↵Hiroshi SHIBATA2021-09-113-25/+25
| | | | and Test::Unit::PendedError
* Surpressing the noisy messagesHiroshi SHIBATA2021-09-111-0/+8
|
* Temporary pend unknown behavior of parallel testsHiroshi SHIBATA2021-09-111-1/+3
|
* pend non-supported featureHiroshi SHIBATA2021-09-111-0/+2
|
* More fixed assertion message testsHiroshi SHIBATA2021-09-111-17/+10
|
* We prepared Test::Unit::TestCase in default valueHiroshi SHIBATA2021-09-111-2/+2
|
* We don't want to consistent assert and refute assertionsHiroshi SHIBATA2021-09-111-26/+0
|
* Fixed compatible assertion message formatHiroshi SHIBATA2021-09-111-35/+11
|
* Removed output assertion tests. Because our default runner is replaced by ↵Hiroshi SHIBATA2021-09-111-232/+0
| | | | custom output
* Use msg format with test-unitHiroshi SHIBATA2021-09-111-2/+2
|
* Use Test namespace instead of MiniTest in test_parallel.rbHiroshi SHIBATA2021-09-111-3/+3
|
* Use Test::Unit::Assertions migrated with MiniTest::AssertionsHiroshi SHIBATA2021-09-112-6/+6
|
* Replace Test::Unit to Test::Unit::Runner migrated with MiniTest::UnitHiroshi SHIBATA2021-09-112-9/+9
|
* Use assert_raise instead of assert_raisesHiroshi SHIBATA2021-09-111-31/+31
|
* Replace MiniTest to TestHiroshi SHIBATA2021-09-112-71/+71
|
* Move test of minitest to testunitHiroshi SHIBATA2021-09-112-0/+1863
|
* Fix relative paths from core_assertions.rbNobuyoshi Nakada2021-08-041-1/+1
|
* Rename RubyVM::MJIT to RubyVM::JITTakashi Kokubun2021-01-132-2/+2
| | | | | | | | because the name "MJIT" is an internal code name, it's inconsistent with --jit while they are related to each other, and I want to discourage future JIT implementation-specific (e.g. MJIT-specific) APIs by this rename. [Feature #17490]
* Guard all accesses to RubyVM::MJIT with defined?(RubyVM::MJIT) &&Benoit Daloze2020-12-042-2/+2
| | | | * Otherwise those tests, etc cannot run on alternative Ruby implementations.
* Make TracePoint.stat a singleton method again (#2726)Alan Wu2019-12-041-1/+1
| | | [Bug #16399]
* tool/lib/test/unit/parallel.rb: fail explicitly when failing to get ioYusuke Endoh2019-12-031-0/+2
| | | | | | | `(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]
* use builtin for TracePoint.Koichi Sasada2019-11-081-2/+1
| | | | Define TracePoint in trace_point.rb and use __builtin_ syntax.
* fix assertion number.Koichi Sasada2019-10-021-1/+1
| | | | | On parallel test, there are additional tests because of implicit checkers which are enabled on 84cbce3d88.
* Split test files for test-framework that are test-unit and minitest to tool ↵Hiroshi SHIBATA2019-07-0213-0/+404
direcotry.