Skip to content

Commit

Permalink
fix roc_glue tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lukewilliamboswell committed Jul 9, 2024
1 parent cde2a89 commit 4521f92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/glue/tests/test_glue_cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ mod glue_cli_run {
let out = run_app(&dir.join("app.roc"), args);

assert!(out.status.success());
let ignorable = "🔨 Rebuilding platform...\n";
let ignorable = "🔨 Building host ...\n";
let stderr = out.stderr.replacen(ignorable, "", 1);
assert_eq!(stderr, "");
assert!(
Expand All @@ -71,11 +71,11 @@ mod glue_cli_run {

// Validate linux with the default linker.
if !(cfg!(target_os = "linux") && (skip_on_linux_surgical_linker.contains(&test_name_str))) {
validate(dir.clone(), std::iter::empty());
validate(dir.clone(), ["--build-host"]);
}

if TEST_LEGACY_LINKER {
validate(dir, ["--linker=legacy"]);
validate(dir, ["--build-host", "--linker=legacy"]);
}
}
)*
Expand Down

0 comments on commit 4521f92

Please sign in to comment.