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

Implement "unsafe" builtins #1766

Open
wants to merge 11 commits into
base: enum-error-handling
Choose a base branch
from
Open

Commits on Nov 18, 2024

  1. Avoid dropping the TestBuilder in async_verify.

    If the `verify` call in `async_verify` panicked, the the  `Drop` impl
    would be called, which would itself panic (because we were in an async
    context), obscuring the actual error message. A nice solution would
    have been to use `catch_unwind`, but this is not allowed for async fns.
    Instead, we make `verify` return an actual result and defer the panic.
    Tehforsch committed Nov 18, 2024
    Configuration menu
    Copy the full SHA
    d98d654 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2024

  1. Configuration menu
    Copy the full SHA
    b0ade8e View commit details
    Browse the repository at this point in the history
  2. Implement pread, add test.

    Tehforsch committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    df85cfe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4942814 View commit details
    Browse the repository at this point in the history
  4. Implement fread

    Tehforsch committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    633775c View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2024

  1. Implement file_stat

    Tehforsch committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    2030c86 View commit details
    Browse the repository at this point in the history
  2. Implement find_in_path

    Tehforsch committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    431b71c View commit details
    Browse the repository at this point in the history
  3. Implement fwrite

    Tehforsch committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    60dca8b View commit details
    Browse the repository at this point in the history
  4. Implement get_tmp_dir

    Tehforsch committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    8276ccd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2fc07a5 View commit details
    Browse the repository at this point in the history
  6. Implement unlink.

    Tehforsch committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    006040b View commit details
    Browse the repository at this point in the history