mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
4b079e16e5
Variables set in if and while conditions are in the enclosing block, not the if/while statement block. For example: if set -l var (somecommand) ; end echo $var will now work as expected. Fixes #4820. Fixes #1212.
24 lines
458 B
Text
24 lines
458 B
Text
|
|
####################
|
|
# Test variable expand
|
|
|
|
####################
|
|
# Test variable set
|
|
|
|
####################
|
|
# Test using slices of command substitution
|
|
|
|
####################
|
|
# Test more
|
|
|
|
####################
|
|
# Verify that if statements swallow failure
|
|
|
|
####################
|
|
# Verify and/or behavior with if and while statements
|
|
|
|
####################
|
|
# Catch this corner case, which should produce an error
|
|
|
|
####################
|
|
# Loop control in conditions
|