aboutsummaryrefslogtreecommitdiffstats
path: root/tool/lib
Commit message (Collapse)AuthorAgeFilesLines
* --date=iso-local does not work with old gitNobuyoshi Nakada2019-09-031-2/+8
|
* Use -z option for git-logNobuyoshi Nakada2019-09-031-3/+1
|
* Extract git commit log as raw format like git-svn for ChangeLogNobuyoshi Nakada2019-09-021-24/+22
|
* Support packaging different branch/tagNobuyoshi Nakada2019-09-011-4/+9
|
* Fetch commit notesNobuyoshi Nakada2019-09-011-0/+1
|
* Support git tagsNobuyoshi Nakada2019-09-011-4/+8
|
* Remove files/directories for git/github which are committed [ci skip]Nobuyoshi Nakada2019-08-311-4/+2
|
* Suppress uninitialized instance variable warnings [ci skip]Nobuyoshi Nakada2019-08-301-4/+2
|
* Support revision in git-svn logNobuyoshi Nakada2019-08-301-6/+29
|
* Updated comment of VCS#get_revisions [ci skip]Nobuyoshi Nakada2019-08-301-2/+5
|
* Ensure the last and changed revisions as IntegersNobuyoshi Nakada2019-08-281-2/+2
|
* Short revision of SVN should be an IntegerNobuyoshi Nakada2019-08-271-1/+1
|
* Limit ChangeLog entriesNobuyoshi Nakada2019-08-261-3/+8
| | | | | Since the previous release date, when the starting message is not found.
* `local_path?` is a class method [ci skip]Nobuyoshi Nakada2019-08-251-1/+1
|
* tool/lib/vcs.rb: explicitly fail when notes/commits is not availableYusuke Endoh2019-08-251-0/+5
|
* Revert workaroundKazuhiro NISHIYAMA2019-08-251-11/+1
|
* Simplified f13a00f5b4 [ci skip]Nobuyoshi Nakada2019-08-251-9/+3
|
* Export all commits as ChangeLog when no starting commit is found [ci skip]Nobuyoshi Nakada2019-08-251-3/+10
|
* Add workaround (2nd try)Kazuhiro NISHIYAMA2019-08-251-1/+1
| | | | | | | | | | | | | https://rubyci.org/logs/rubyci.s3.amazonaws.com/gentoo/ruby-master/log/20190824T153002Z.fail.html.gz ``` /home/gentoo/chkbuild/tmp/build/20190824T153002Z/ruby/tool/lib/vcs.rb:577:in `export_changelog': cannot find the beginning revision of the branch (RuntimeError) from ./tool/make-snapshot:353:in `block in package' from ./tool/make-snapshot:351:in `chdir' from ./tool/make-snapshot:351:in `package' from ./tool/make-snapshot:523:in `block in <main>' from ./tool/make-snapshot:523:in `collect' from ./tool/make-snapshot:523:in `<main>' ```
* Add workaround for some CIsKazuhiro NISHIYAMA2019-08-241-1/+9
| | | | | | | | | | | | | https://rubyci.org/logs/rubyci.s3.amazonaws.com/debian8/ruby-master/log/20190824T093005Z.fail.html.gz ``` branches: * trunk remotes/origin/trunk ``` and ``` fatal: Remote branch master not found in upstream origin ```
* Add debug printKazuhiro NISHIYAMA2019-08-241-0/+1
| | | | | | | | matser branch not found on some CIs https://rubyci.org/logs/rubyci.s3.amazonaws.com/debian9/ruby-master/log/20190824T063005Z.fail.html.gz ``` fatal: Remote branch master not found in upstream origin ```
* Gem::ConfigMap is deprecated nowHiroshi SHIBATA2019-08-181-1/+0
|
* Move some assertions to CoreAssertions. (#2354)SHIBATA Hiroshi2019-08-142-66/+66
| | | | | | | They are used by default gems like forwardable. * assert_raise_with_message * assert_warning * assert_warn
* Detect VCS from the current directory by default [ci skip]Nobuyoshi Nakada2019-08-131-1/+1
|
* Push commits notes too [ci skip]Nobuyoshi Nakada2019-08-131-3/+8
|
* Include commits notes in ChangeLogNobuyoshi Nakada2019-08-121-1/+1
|
* Use `end_with?` instead of Regexp with missing escapeKazuhiro NISHIYAMA2019-08-111-1/+1
|
* complement `test_` prefix.Koichi Sasada2019-08-091-5/+14
| | | | | | | `make test-all TESTS=name` can specify running test files by name. name can be dirname ('dir/') or a file ('.../test_foo.rb'). This patch complement `test_` prefix for a test. So we only need to specify `TESTS=ruby/hash` which means `TESTS=ruby/test_hash.rb`.
* Aliases capture_output to capture_io for test-unit compatiblity.Hiroshi SHIBATA2019-08-081-0/+1
|
* Moved FailDesc to EnvUtil.failure_descriptionNobuyoshi Nakada2019-08-052-31/+35
| | | | So EnvUtil does not depends on test/unit.
* Move assert_ruby_status and assert_throw to CoreAssertions for default gems.Hiroshi SHIBATA2019-08-032-37/+37
|
* Added more attributes [ci skip]Nobuyoshi Nakada2019-08-031-0/+1
|
* It can be share to use CoreAssertions for default gems.Hiroshi SHIBATA2019-08-021-4/+29
| | | | ref. https://github.com/ruby/logger/pull/35
* backtrace can be nil.Koichi Sasada2019-07-311-0/+3
| | | | Surprisingly, on SystemStackError#backtrace can return nil.
* Revert "add debug code"Koichi Sasada2019-07-311-9/+0
| | | | This reverts commit e83ec207cd5fda973c41d6629d8504b515522b12.
* add debug codeKoichi Sasada2019-07-311-0/+9
|
* Separate VCS::GIT#upstreamNobuyoshi Nakada2019-07-301-4/+9
|
* Use libraries in the base directory if givenNobuyoshi Nakada2019-07-251-1/+2
|
* Added --base-directory optionNobuyoshi Nakada2019-07-251-0/+4
|
* Moved NoMemoryError hookNobuyoshi Nakada2019-07-251-4/+8
| | | | | Moved NoMemoryError hook from AutoRunner.run to Runner#run, so it will work even in non-autorunning mode.
* Moved NoMemoryError hook to Test::Unit::AutoRunnerNobuyoshi Nakada2019-07-251-0/+4
|
* @@project_dir in Gem::TestCase is no longer usedNobuyoshi Nakada2019-07-241-6/+0
|
* tool/test/runner.rb: support --test-target-dir optionYusuke Endoh2019-07-211-3/+0
| | | | | | | | | | | tool/test/runner.rb had been copied from test/runner.rb. test/runner.rb was for `make test-all`, and tool/test/runner.rb was for `make test-testframework` and `make test-tool`. But I want to avoid the code clones. This change makes tool/test/runner.rb support --test-target-dir option which allows tool/test/runner.rb to run `make test-all`. Now we can remove test/runner.rb.
* Move vpath.rb into tool library direcotry.Hiroshi SHIBATA2019-07-151-0/+87
|
* Put jisx0208.rb to under the library directory.Hiroshi SHIBATA2019-07-151-0/+86
|
* Separate the assertions of ruby core tests from test/unit/assertions.Hiroshi SHIBATA2019-07-152-205/+218
|
* Put colorize to library directory.Hiroshi SHIBATA2019-07-152-1/+51
| | | | Same as 66299e7ca83d379d13abaa5411f3e0419334cabb
* Put vcs .rb to under the lib direcotory.Hiroshi SHIBATA2019-07-151-0/+669
| | | | Because it's the common library for tool files.
* complement '.rb' on `test-all TESTS=test_xxx`Koichi Sasada2019-07-141-22/+32
| | | | | | for test-all rule, we can specify a file with TESTS option like `TESTS=test_xxx.rb`. However, we can eliminate last '.rb' suffix so this patch try with '.rb' suffix if the given path is not available.
* Restore support library for only test files that are digest and csv.Hiroshi SHIBATA2019-07-091-22/+0
|