mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-15 06:24:01 +00:00
Fix BSD test failure regression
Nothing major. Introduced in 1ecf9d013d
.
This commit is contained in:
parent
afe2e9d8db
commit
55c3df7f41
1 changed files with 2 additions and 2 deletions
|
@ -616,6 +616,6 @@ add_test!("test_signal_parse", || {
|
||||||
/// for the unknown ones too. We don't need to do this for Linux and macOS because we're using
|
/// for the unknown ones too. We don't need to do this for Linux and macOS because we're using
|
||||||
/// rust's native OS targeting for those.
|
/// rust's native OS targeting for those.
|
||||||
fn bsd_signals() {
|
fn bsd_signals() {
|
||||||
assert_eq!(Signal::SIGEMT.code(), libc::SIGEMT);
|
assert_eq!(Signal::parse(L!("SIGEMT")), Some(Signal::new(libc::SIGEMT)));
|
||||||
assert_eq!(Signal::SIGINFO.code(), libc::SIGINFO);
|
assert_eq!(Signal::parse(L!("SIGINFO")), Some(Signal::new(libc::SIGINFO)));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue