mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
905766fca2
* Hoist `for` loop control var to enclosing scope It should be possible to reference the last value assigned to a `for` loop control var when the loop terminates. This makes it easier to detect if we broke out of the loop among other things. This change makes fish `for` loops behave like most other shells. Fixes #1935 * Remove redundant line
106 lines
2.6 KiB
Text
106 lines
2.6 KiB
Text
|
|
####################
|
|
# No args is an error
|
|
argparse: No option specs were provided
|
|
|
|
####################
|
|
# Missing -- is an error
|
|
argparse: Missing -- separator
|
|
|
|
####################
|
|
# Flags but no option specs is an error
|
|
argparse: No option specs were provided
|
|
|
|
####################
|
|
# Invalid option specs
|
|
argparse: Invalid option spec 'h-' at char '-'
|
|
argparse: Short flag '+' invalid, must be alphanum or '#'
|
|
argparse: Invalid option spec 'h/help:' at char ':'
|
|
argparse: Invalid option spec 'h-help::' at char ':'
|
|
argparse: Invalid option spec 'h-help=x' at char 'x'
|
|
|
|
####################
|
|
# --max-args and --min-args work
|
|
min-max: Expected at least 1 args, got only 0
|
|
min-max: Expected at most 3 args, got 4
|
|
min-max: Expected at most 1 args, got 2
|
|
|
|
####################
|
|
# Invalid "#-val" spec
|
|
argparse: Implicit int short flag '#' does not allow modifiers like '='
|
|
|
|
####################
|
|
# Invalid arg in the face of a "#-val" spec
|
|
argparse: Unknown option '-x'
|
|
Standard input (line 41):
|
|
argparse '#-val' -- abc -x def
|
|
^
|
|
|
|
####################
|
|
# Defining a short flag more than once
|
|
argparse: Short flag 's' already defined
|
|
|
|
####################
|
|
# Defining a long flag more than once
|
|
argparse: Long flag 'short' already defined
|
|
|
|
####################
|
|
# Defining an implicit int flag more than once
|
|
argparse: Implicit int flag '#' already defined
|
|
|
|
####################
|
|
# Defining an implicit int flag with modifiers
|
|
argparse: Implicit int short flag 'v' does not allow modifiers like '='
|
|
|
|
####################
|
|
# No args
|
|
|
|
####################
|
|
# One arg and no matching flags
|
|
|
|
####################
|
|
# Five args with two matching a flag
|
|
|
|
####################
|
|
# Required, optional, and multiple flags
|
|
|
|
####################
|
|
# --stop-nonopt works
|
|
|
|
####################
|
|
# Implicit int flags work
|
|
|
|
####################
|
|
# Should be set to 987
|
|
|
|
####################
|
|
# Should be set to 765
|
|
|
|
####################
|
|
# Bool short flag only
|
|
|
|
####################
|
|
# Value taking short flag only
|
|
|
|
####################
|
|
# Implicit int short flag only
|
|
|
|
####################
|
|
# Implicit int short flag only with custom validation passes
|
|
|
|
####################
|
|
# Implicit int short flag only with custom validation fails
|
|
argparse: Value '499' for flag 'x' less than min allowed of '500'
|
|
|
|
####################
|
|
# Implicit int flag validation fails
|
|
argparse: Value '765x' for flag 'max' is not an integer
|
|
argparse: Value 'a1' for flag 'm' is not an integer
|
|
|
|
####################
|
|
# Check the exit status from argparse validation
|
|
|
|
####################
|
|
# Explicit int flag validation
|
|
argparse: Value '2' for flag 'm' greater than max allowed of '1'
|
|
argparse: Value '-1' for flag 'max' less than min allowed of '0'
|