Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use a real out of memory error in die with dignity #77039

Merged
merged 4 commits into from
Sep 1, 2021

Commits on Aug 30, 2021

  1. Use a real out of memory error in die with dignity

    Today when testing dying with dignity, we simply throw an
    OutOfMemoryError. We know this should not get caught by any intermediate
    code and end up in the uncaught exception handler. This allows us to
    test that this exception handler is able to successfully kill the
    VM. However, it is on the table to no longer use the uncaught exception
    handler, but instead the built-in support for ExitOnOutOfMemoryError. A
    fake OutOfMemoryError would not be processed by this handler, so to
    prepare the way, we switch to using a real OutOfMemoryError.
    jasontedor committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    d12e6bc View commit details
    Browse the repository at this point in the history
  2. Tweaks

    jasontedor committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    9936876 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2021

  1. Further tweaks

    jasontedor committed Aug 31, 2021
    Configuration menu
    Copy the full SHA
    fef22c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fbea1cc View commit details
    Browse the repository at this point in the history