summaryrefslogtreecommitdiff
path: root/tool/test-bundled-gems.rb
Commit message (Collapse)AuthorAgeFilesLines
* Fix rbs (#7415)Soutaro Matsumoto2023-03-021-1/+1
| | | | * Update RBS to skip validation task * Revert TEST_BUNDLED_GEMS_ALLOW_FAILURES
* Set up RBS_SKIP_TESTS (#6862)Soutaro Matsumoto2022-12-211-1/+1
| | | * Set up RBS_SKIP_TESTS
* Display error messages outside the groups so can be found quicklyNobuyoshi Nakada2022-12-121-5/+9
|
* Run skipped minitest tests that now passAlan Wu2022-11-191-5/+0
| | | | The mentioned PR was merged.
* Do not load library files from repository only for testNobuyoshi Nakada2022-07-271-1/+1
| | | | What we want to test should be the bundled and to be installed files, but not the upstream.
* Use built bundled gems in test-bundled-gemsNobuyoshi Nakada2022-07-251-24/+25
|
* Kill bundled gem tests when interruptedNobuyoshi Nakada2022-07-241-2/+10
|
* Disable parallel built in test-bundled-gemsNobuyoshi Nakada2022-07-161-0/+2
|
* Use `File::PATH_SEPARATOR` for the portabilityNobuyoshi Nakada2022-07-091-3/+3
|
* Relax extention name for macOSHiroshi SHIBATA2021-11-151-1/+1
|
* Bundle RBS 1.7.0 (#5105)Soutaro Matsumoto2021-11-121-4/+2
| | | | | | | | | * Bundle RBS 1.7.0 * tool/test-bundled-gems.rb: Use a correct path to Check if rbs is built * tool/test-bundled-gems.rb: lib/rbs/parse.y is no longer created Co-authored-by: Yusuke Endoh <mame@ruby-lang.org>
* Bundle rbs 1.7.0.beta.5Yusuke Endoh2021-11-091-0/+9
|
* introduce debug.gemKoichi Sasada2021-10-051-0/+10
| | | | | | For the `test-bundled-gems`, make `debug.so` with extconf.rb and `make` command directly because `rake-compiler` assume ruby is installed (but `test-bundled-gems` can run without installation).
* tool/test-bundled-gems.rb: Use the bundled RBS code to test TypeProfYusuke Endoh2021-08-251-0/+5
| | | | | | | | | Formerly, TypeProf was tested with the latest RBS code during `make test-bundled-gems`. However, when a new version of rbs is released, and if it is incompatible with TypeProf, `make test-bundled-gems` starts failing, which was annoying. By this change, TypeProf is tested with the bundled version of RBS.
* Revert "tool/test-bundled-gems.rb: Use the bundled RBS code to test TypeProf"Yusuke Endoh2021-08-241-7/+1
| | | | | | This reverts commit 22deda43cb98aa3cee48d0bebbff7c4db1d7652a. It was incomplete. Sorry!
* tool/test-bundled-gems.rb: Use the bundled RBS code to test TypeProfYusuke Endoh2021-08-241-1/+7
| | | | | | | | | Formerly, TypeProf was tested with the latest RBS code during `make test-bundled-gems`. However, when a new version of rbs is released, and if it is incompatible with TypeProf, `make test-bundled-gems` starts failing, which was annoying. By this change, TypeProf is tested with the bundled version of RBS.
* Group commands on GitHub ActionsNobuyoshi Nakada2021-08-071-1/+5
|
* tool/test-bundled-gems.rb: Stop tests conflicting with error_highlightYusuke Endoh2021-06-291-0/+6
| | | | | This hack should be removed after the minitest side is updated. https://github.com/seattlerb/minitest/pull/880
* test-bundled-gems.rb: show failed gems at lastNobuyoshi Nakada2020-12-031-0/+3
|
* test-bundled-gems: select bundled gems to test by BUNDLED_GEMSNobuyoshi Nakada2020-12-021-0/+1
|
* extend timeout of rbs test on rbs testsKoichi Sasada2020-10-211-1/+4
|
* Bundle rbs gem as bundled gems (#3496)Hiroshi SHIBATA2020-09-231-2/+10
| | | | * Added rbs as bundled gems * Added the missing dependencies for rbs gem
* Skip comment and empty lines in gems/bundled_gems fileNobuyoshi Nakada2020-07-051-0/+1
|
* Test bundled gems with timeoutNobuyoshi Nakada2020-01-191-1/+12
|
* test-bundled-gems.rb: Use real paths for symlinksNobuyoshi Nakada2020-01-131-3/+3
|
* Do not occupy `ARGV` by XRUBY commandNobuyoshi Nakada2019-11-051-1/+2
| | | | | Instead run test-bundled-gems.rb by `ENV['RUBY']`, which should be set by runruby.rb.
* test-bundled-gems.rb: fixed for out-of-place buildNobuyoshi Nakada2019-10-281-2/+3
|
* Pass $(XRUBY) to test-bundled-gems.rb since RbConfig.ruby is incorrect for ↵Benoit Daloze2019-09-291-1/+1
| | | | miniruby
* Move the logic to test bundled gems to Ruby codeBenoit Daloze2019-09-291-0/+26
* Writing shell scripts in a Makefile is very error-prone. * TEST_BUNDLED_GEMS_ALLOW_FAILURES seemed to not work before.