mirror of
https://github.com/casey/just.git
synced 2024-11-23 20:15:05 +03:00
31 lines
1.8 KiB
Rust
31 lines
1.8 KiB
Rust
|
use super::*;
|
||
|
|
||
|
#[test]
|
||
|
fn bugfix() {
|
||
|
let mut justfile = String::from("foo: (x ");
|
||
|
for _ in 0..500 {
|
||
|
justfile.push('(');
|
||
|
}
|
||
|
Test::new()
|
||
|
.justfile(&justfile)
|
||
|
.stderr(RECURSION_LIMIT_REACHED)
|
||
|
.status(EXIT_FAILURE)
|
||
|
.run();
|
||
|
}
|
||
|
|
||
|
#[cfg(not(windows))]
|
||
|
const RECURSION_LIMIT_REACHED: &str = "
|
||
|
error: Parsing recursion depth exceeded
|
||
|
|
|
||
|
1 | foo: (x ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
|
||
|
| ^
|
||
|
";
|
||
|
|
||
|
#[cfg(windows)]
|
||
|
const RECURSION_LIMIT_REACHED: &str = "
|
||
|
error: Parsing recursion depth exceeded
|
||
|
|
|
||
|
1 | foo: (x ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
|
||
|
| ^
|
||
|
";
|