ruby-changes:66375
From: Jun <ko1@a...>
Date: Mon, 31 May 2021 23:24:28 +0900 (JST)
Subject: [ruby-changes:66375] ff6f4e631c (master): tool/ci_functions.sh: Fix typos and improve the comment. [ci skip]
https://git.ruby-lang.org/ruby.git/commit/?id=ff6f4e631c From ff6f4e631ccddb436c3c7a3a0ebf6a3f3e4b63ec Mon Sep 17 00:00:00 2001 From: Jun Aruga <jaruga@r...> Date: Mon, 31 May 2021 16:21:10 +0200 Subject: tool/ci_functions.sh: Fix typos and improve the comment. [ci skip] --- tool/ci_functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tool/ci_functions.sh b/tool/ci_functions.sh index f0e888e..7066bbe 100644 --- a/tool/ci_functions.sh +++ b/tool/ci_functions.sh @@ -7,7 +7,7 @@ https://github.com/ruby/ruby/blob/trunk/tool/ci_functions.sh#L7 # See `ruby tool/test/runner.rb --help` `-n` option. function ci_to_excluded_test_opts { local tests_str="${1}" - # Use the backward matching `!/name$/`, as the perfect matching does not work. + # Use the backward matching `!/name$/`, as the perfect matching doesn't work. # https://bugs.ruby-lang.org/issues/16936 ruby <<EOF opts = "${tests_str}".split.map { |test| "-n \!/#{test}\$$/" } @@ -16,7 +16,7 @@ EOF https://github.com/ruby/ruby/blob/trunk/tool/ci_functions.sh#L16 return 0 } -# Create options with patterns `-n /name1/ -n /name2/ ..` to exclude the test +# Create options with patterns `-n name1 -n name2 ..` to include the test # method names by the method names `name1 name2 ..`. # See `ruby tool/test/runner.rb --help` `-n` option. function ci_to_included_test_opts { -- cgit v1.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/