2022-06-22 15:00:13 -07:00
|
|
|
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
|
2023-12-29 13:25:30 -08:00
|
|
|
——▶ justfile:1:265
|
|
|
|
│
|
|
|
|
1 │ foo: (x ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
|
|
│ ^
|
2022-06-22 15:00:13 -07:00
|
|
|
";
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
const RECURSION_LIMIT_REACHED: &str = "
|
|
|
|
error: Parsing recursion depth exceeded
|
2023-12-29 13:25:30 -08:00
|
|
|
——▶ justfile:1:57
|
|
|
|
│
|
|
|
|
1 │ foo: (x ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
|
|
│ ^
|
2022-06-22 15:00:13 -07:00
|
|
|
";
|