Fix flaky test: prevent regexp match to tempdir path #1147
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
test_normalized_file_list_with_dot_doc_overridden_by_exclude_option
randomly fails.http://ci.rvm.jp/results/master-no-rjit@ruby-sp2-noble-docker/5239423
In this case, file path
"/tmp/rubytest.ob1rbw/d20240802-764731-bboa2z/a.rb"
matches to regexp exclude path/b.rb/
.rubytest.ob1rbw
part includesb1rb
and it matched to/b.rb/
.\.
and$
Note that tmpdir path might also include period (in
rubytest.xxxxxx
part) and there is a chance that tmpdir might match to/t\.rb/
so I appended$
to avoid it.