Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Store tempfile objects to prevent deletion during tests#555

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
jcouball merged 1 commit intoruby-git:masterfrombjfish:truffleruby-ci-fix
Jan 6, 2022

Conversation

@bjfish
Copy link
Contributor

Your checklist for this pull request

🚨Please review theguidelines for contributing to this repository.

  • Ensure all commits include DCO sign-off.
  • Ensure that your contributions pass unit testing.
  • Ensure that your contributions contain documentation if applicable.

Description

This allows the truffleruby-head CI to pass. I believe this is currently failing because thetempfile_object is being finalized and deleting the file at the corresponding path while the file at the path is still being used during the test. The problem here is similar to what is described here:

# delete it now, before we write to it, so that Ruby doesn't delete it
.

This solution holds the tempfiles in an array to ensure they are not removed until theArray#clear method is called after the test is run.

Alternative solutions:

  • calltempfile_object.close! - This would prevent the issue but the path wouldn't be cleaned up after the test. The paths could be tracked and removed manually.

Signed-off-by: Brandon Fish <brandon.j.fish@oracle.com>
@bjfishbjfish changed the titleDelete tempfile so files at this path are not deleted during testsStore tempfile objects to prevent deletion during testsJan 5, 2022
Copy link
Member

@jcouballjcouball left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Nice! I noticed the occasional failures. I am glad you stepped up with a solution. What you did makes a lot of sense. Thank you.

@jcouballjcouball merged commit12e3d03 intoruby-git:masterJan 6, 2022
@bjfishbjfish deleted the truffleruby-ci-fix branchJanuary 6, 2022 03:08
This was referencedJan 6, 2022
p-mongo pushed a commit to p-mongodb/ruby-git that referenced this pull requestMay 27, 2022
…' into mine* p/diff-submodule: (36 commits)  Support --submodule option to git diff.  Support the --all option for git fetch (ruby-git#583)  Workaround to get JRuby build working (ruby-git#582)  Update README.md (ruby-git#580)  Make the directory param to Git.clone optional (ruby-git#578)  Make Git::URL.clone_to handle cloning to bare and mirror repos (ruby-git#577)  Add Git::URL #parse and #clone_to methods (ruby-git#575)  Use the head version of yard (ruby-git#573)  Release v1.11.0  Supress unneeded test output (ruby-git#570)  Add support for fetch options "--force/-f" and "--prune-tags/-P". (ruby-git#563)  Fix bug when grepping lines that contain numbers surrounded by colons (ruby-git#566)  remove from maintainer (ruby-git#567)  Address command line injection in Git::Lib#fetch  Release v1.10.2 (ruby-git#561)  Add create-release, setup, and console dev scripts (ruby-git#560)  Store tempfile objects to prevent deletion during tests (ruby-git#555)  Release v1.10.1 (ruby-git#553)  Properly escape double quotes in shell commands on Windows (ruby-git#552)  Properly unescape diff paths (ruby-git#504)  ...* p/set-url-push: (36 commits)  Add :push option to remote_set_url.  Support the --all option for git fetch (ruby-git#583)  Workaround to get JRuby build working (ruby-git#582)  Update README.md (ruby-git#580)  Make the directory param to Git.clone optional (ruby-git#578)  Make Git::URL.clone_to handle cloning to bare and mirror repos (ruby-git#577)  Add Git::URL #parse and #clone_to methods (ruby-git#575)  Use the head version of yard (ruby-git#573)  Release v1.11.0  Supress unneeded test output (ruby-git#570)  Add support for fetch options "--force/-f" and "--prune-tags/-P". (ruby-git#563)  Fix bug when grepping lines that contain numbers surrounded by colons (ruby-git#566)  remove from maintainer (ruby-git#567)  Address command line injection in Git::Lib#fetch  Release v1.10.2 (ruby-git#561)  Add create-release, setup, and console dev scripts (ruby-git#560)  Store tempfile objects to prevent deletion during tests (ruby-git#555)  Release v1.10.1 (ruby-git#553)  Properly escape double quotes in shell commands on Windows (ruby-git#552)  Properly unescape diff paths (ruby-git#504)  ...
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

@jcouballjcouballjcouball approved these changes

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

2 participants

@bjfish@jcouball

[8]ページ先頭

©2009-2025 Movatter.jp