• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

demosdemon / git-remote-codecommit / 22876447418

09 Mar 2026 09:51PM UTC coverage: 90.812% (-2.7%) from 93.561%
22876447418

Pull #10

github

web-flow
Merge b31db3c8f into 91bb3eaa8
Pull Request #10: ci(deps): bump the github-actions group with 3 updates

682 of 751 relevant lines covered (90.81%)

449.68 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/crates/git-remote-codecommit/src/nightly/windows_process_exit_code.rs
1
#![cfg_attr(build_feature_probe, feature(windows_process_exit_code_from))]
2

3
#[cfg(build_feature_probe)]
4
const _: () = {
5
    use std::process::ExitCode;
6

7
    fn _probe() -> std::process::ExitCode {
8
        std::os::windows::process::ExitCodeExt::from_raw(0_u32)
9
    }
10
};
11

12
#[cfg(build_feature_probe)]
13
const _: Option<&str> = option_env!("RUSTC_BOOTSTRAP");
14

15
#[cfg(not(windows_process_exit_code_from))]
16
pub(crate) trait ExitCodeExt {
17
    fn from_raw(code: u32) -> Self;
18
}
19

20
#[cfg(not(windows_process_exit_code_from))]
21
impl ExitCodeExt for std::process::ExitCode {
22
    fn from_raw(code: u32) -> Self {
×
23
        if (code & 0xff) == code {
×
24
            std::process::ExitCode::from((code & 0xff) as u8)
×
25
        } else {
26
            std::process::ExitCode::FAILURE
×
27
        }
28
    }
×
29
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc