83 lines
1.3 KiB
Rust
83 lines
1.3 KiB
Rust
use super::*;
|
|
|
|
#[cfg(windows)]
|
|
test! {
|
|
name: powershell,
|
|
justfile: r#"
|
|
default:
|
|
#!powershell
|
|
Write-Host Hello-World
|
|
"#,
|
|
stdout: "Hello-World\n",
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
test! {
|
|
name: powershell_exe,
|
|
justfile: r#"
|
|
default:
|
|
#!powershell.exe
|
|
Write-Host Hello-World
|
|
"#,
|
|
stdout: "Hello-World\n",
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
test! {
|
|
name: cmd,
|
|
justfile: r#"
|
|
default:
|
|
#!cmd /c
|
|
@echo Hello-World
|
|
"#,
|
|
stdout: "Hello-World\r\n",
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
test! {
|
|
name: cmd_exe,
|
|
justfile: r#"
|
|
default:
|
|
#!cmd.exe /c
|
|
@echo Hello-World
|
|
"#,
|
|
stdout: "Hello-World\r\n",
|
|
}
|
|
|
|
#[test]
|
|
fn simple() {
|
|
Test::new()
|
|
.justfile(
|
|
"
|
|
foo:
|
|
#!/bin/sh
|
|
echo bar
|
|
",
|
|
)
|
|
.stdout("bar\n")
|
|
.run();
|
|
}
|
|
|
|
// This test exists to make sure that shebang recipes run correctly. Although
|
|
// this script is still executed by a shell its behavior depends on the value of
|
|
// a variable and continuing even though a command fails, whereas in plain
|
|
// recipes variables are not available in subsequent lines and execution stops
|
|
// when a line fails.
|
|
#[test]
|
|
fn run_shebang() {
|
|
Test::new()
|
|
.justfile(
|
|
"
|
|
a:
|
|
#!/usr/bin/env sh
|
|
code=200
|
|
x() { return $code; }
|
|
x
|
|
x
|
|
",
|
|
)
|
|
.status(200)
|
|
.stderr("error: Recipe `a` failed with exit code 200\n")
|
|
.run();
|
|
}
|