1. 29 7月, 2022 1 次提交
  2. 27 7月, 2022 4 次提交
    • B
      Use real exec on cfg(unix) targets · 622613f9
      Ben Kimock 提交于
      When cargo-miri is executed as a cargo test runner or rustdoc runtool,
      external tools expect what they launch as the runner/runtool to be the
      process actually running the test. But in the implementation, we launch
      the Miri interpreter as a subprocess using std::process::Command. This
      tends to confuse other tools (like nextest) and users (like the author).
      What we really want is to call POSIX exec so that the cargo-miri process
      becomes the interpreter.
      
      So this implements just that; we call execve via a cfg(unix) extension
      trait. Windows has no such mechanism, but it also doesn't have POSIX
      signals, which is the primary tripping hazard this change fixes.
      622613f9
    • B
      Auto merge of #2447 - RalfJung:rustup, r=RalfJung · 530abacb
      bors 提交于
      rustup
      530abacb
    • R
      rustup · dd3b8e8b
      Ralf Jung 提交于
      dd3b8e8b
    • B
      Auto merge of #2444 - oli-obk:file_descriptor_defaults, r=RalfJung · a62f954e
      bors 提交于
      Add default impls for `FileDescriptor` methods
      
      I felt like it was just noisy to have to write the "can't do this here" defaults
      a62f954e
  3. 26 7月, 2022 3 次提交
  4. 25 7月, 2022 13 次提交
  5. 24 7月, 2022 17 次提交
  6. 23 7月, 2022 2 次提交