break for, loop, while execution when external command runs to failed (#7475)

Fixes: #7467

# User-Facing Changes

## for
```
❯ for i in 1..2 { echo 1;  ^false }
1
```

## loop
```
❯ loop { echo bb; ^false }
bb
```

## while
```
❯ mut x = 1; while $x < 3 { $x = $x + 1; echo bb; ^false }
bb
```
This commit is contained in:
WindSoilder
2022-12-14 23:20:18 +08:00
committed by GitHub
parent 98b9839e3d
commit db3177a5aa
6 changed files with 64 additions and 4 deletions

View File

@ -14,3 +14,18 @@ fn for_auto_print_in_each_iteration() {
// that's ok, our main concern is it auto print value in each iteration.
assert_eq!(actual.out, "11");
}
#[test]
fn for_break_on_external_failed() {
let actual = nu!(
cwd: ".",
r#"
for i in 1..2 {
echo 1;
nu --testbin fail
}"#
);
// Note: nu! macro auto repalce "\n" and "\r\n" with ""
// so our output will be `1`
assert_eq!(actual.out, "1");
}