Fix type (exit → exist)

This commit is contained in:
Tobias Bucher 2024-11-28 18:43:56 +01:00
parent 4996052717
commit bab1fcb30c
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
// Tests that failing to run dlltool will raise an error.
//@ needs-dlltool
//@ compile-flags: --crate-type lib --emit link -Cdlltool=does_not_exit.exe
//@ compile-flags: --crate-type lib --emit link -Cdlltool=does_not_exist.exe
#[link(name = "foo", kind = "raw-dylib")]
extern "C" {
fn f(x: i32);

View file

@ -1,4 +1,4 @@
error: Error calling dlltool 'does_not_exit.exe': program not found
error: Error calling dlltool 'does_not_exist.exe': program not found
error: aborting due to 1 previous error