From 4521f9273685152c641c49b94b8748ec24ebc562 Mon Sep 17 00:00:00 2001 From: Luke Boswell Date: Tue, 9 Jul 2024 13:10:43 +1000 Subject: [PATCH] fix roc_glue tests --- crates/glue/tests/test_glue_cli.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/glue/tests/test_glue_cli.rs b/crates/glue/tests/test_glue_cli.rs index 8abf1214791..84ef639b34a 100644 --- a/crates/glue/tests/test_glue_cli.rs +++ b/crates/glue/tests/test_glue_cli.rs @@ -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!( @@ -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"]); } } )*