mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 16:21:11 +00:00
on windows, run the .exe with the full path
This commit is contained in:
parent
06e24fb44f
commit
78a5902261
1 changed files with 2 additions and 2 deletions
|
@ -1462,7 +1462,7 @@ mod test {
|
|||
|
||||
runner(dir);
|
||||
|
||||
let output = std::process::Command::new("app.exe")
|
||||
let output = std::process::Command::new(&dir.join("app.exe"))
|
||||
.current_dir(dir)
|
||||
.output()
|
||||
.unwrap();
|
||||
|
@ -1563,8 +1563,8 @@ mod test {
|
|||
assert_eq!("Hello, 234567 32 1 3!\n", windows_test(test_basics))
|
||||
}
|
||||
|
||||
#[ignore]
|
||||
#[test]
|
||||
#[ignore]
|
||||
fn basics_wine() {
|
||||
assert_eq!("Hello, 234567 32 1 3!\n", wine_test(test_basics))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue