mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
Merge remote-tracking branch 'origin/main' into roc-dev-inline-expects
This commit is contained in:
commit
92cc120c7f
150 changed files with 3480 additions and 2605 deletions
|
@ -286,7 +286,7 @@ fn run_expect_fx<'a, W: std::io::Write>(
|
|||
) -> std::io::Result<bool> {
|
||||
use signal_hook::{consts::signal::SIGCHLD, consts::signal::SIGUSR1, iterator::Signals};
|
||||
|
||||
let mut signals = Signals::new(&[SIGCHLD, SIGUSR1]).unwrap();
|
||||
let mut signals = Signals::new([SIGCHLD, SIGUSR1]).unwrap();
|
||||
|
||||
match unsafe { libc::fork() } {
|
||||
0 => unsafe {
|
||||
|
@ -472,8 +472,7 @@ fn render_expect_failure<'a>(
|
|||
start,
|
||||
frame.start_offset,
|
||||
&variables,
|
||||
)
|
||||
.unwrap();
|
||||
);
|
||||
|
||||
renderer.render_failure(
|
||||
writer,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue