Skip to content

Commit

Permalink
Add match arm for Fuchsia status code upon an abort in a test
Browse files Browse the repository at this point in the history
This change adds ZX_TASK_RETCODE_EXCEPTION_KILL as an expected status
code upon an abort in a test on Fuchsia. Tests

fixes rust-lang#127539
  • Loading branch information
c6c7 committed Jul 15, 2024
1 parent a778c83 commit cbaa831
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/src/test_result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ pub const TR_OK: i32 = 50;
#[cfg(windows)]
const STATUS_ABORTED: i32 = 0xC0000409u32 as i32;

// On Zircon (the Fuchsia kernel), an abort from userspace calls the
// LLVM implementation of __builtin_trap(), e.g., ud2 on x86, which
// raises a kernel exception. If a userspace process does not
// otherwise arrange exception handling, the kernel kills the process
// with this return code.
#[cfg(target_os = "fuchsia")]
const ZX_TASK_RETCODE_EXCEPTION_KILL: i32 = -1028;

#[derive(Debug, Clone, PartialEq)]
pub enum TestResult {
TrOk,
Expand Down Expand Up @@ -105,6 +113,9 @@ pub fn get_result_from_exit_code(
}
None => unreachable!("status.code() returned None but status.signal() was None"),
},
// Upon an abort, Fuchsia returns the status code ZX_TASK_RETCODE_EXCEPTION_KILL.
#[cfg(target_os = "fuchsia")]
Some(ZX_TASK_RETCODE_EXCEPTION_KILL) => TestResult::TrFailed,
#[cfg(not(unix))]
None => TestResult::TrFailedMsg(format!("unknown return code")),
#[cfg(any(windows, unix))]
Expand Down

0 comments on commit cbaa831

Please sign in to comment.