'main': New XFail test for parameter expansion at command word.

This commit is contained in:
Daniel Shahaf 2016-07-28 22:41:23 +00:00 committed by Matthew Martin
parent f3410c5862
commit 76d61360a7

View file

@ -28,10 +28,13 @@
# -------------------------------------------------------------------------------------------------
local x=/usr/bin/env
BUFFER='$x "argument"'
local y=sudo
BUFFER='$x "argument"; $y'
expected_region_highlight=(
"1 2 command" # $x
"4 13 default" # "argument"
"4 13 double-quoted-argument" # "argument"
"14 14 commandseparator" # ;
"16 17 precommand 'parameter expansion precedes precommand recognition'" # $y (sudo)
)