diff options
| author | Bart Schaefer <schaefer@ipost.com> | 2020-11-28 09:23:10 -0800 |
|---|---|---|
| committer | Bart Schaefer <schaefer@ipost.com> | 2021-04-13 21:18:34 -0700 |
| commit | dddae7f05582c6c8e91501dbea6106636cd76f6c (patch) | |
| tree | 7a86eb982ba89eaf5ae323cff206ae84ad279b9e /Test | |
| parent | 48522: README: Clarify _alternative change (diff) | |
| download | zsh-dddae7f05582c6c8e91501dbea6106636cd76f6c.tar zsh-dddae7f05582c6c8e91501dbea6106636cd76f6c.tar.gz zsh-dddae7f05582c6c8e91501dbea6106636cd76f6c.tar.bz2 zsh-dddae7f05582c6c8e91501dbea6106636cd76f6c.tar.lz zsh-dddae7f05582c6c8e91501dbea6106636cd76f6c.tar.xz zsh-dddae7f05582c6c8e91501dbea6106636cd76f6c.tar.zst zsh-dddae7f05582c6c8e91501dbea6106636cd76f6c.zip | |
Add PM_DECLARED and PM_DECLAREDNULL parameter flags.
This addresses the issue that "typeset foo" creates $foo set to an
empty string, which differs from typeset handling in bash and ksh.
It does this by concealing the internal value rather than alter
the way internal values are defaulted.
This imposes the following changes:
A typeset variable with no assignment triggers NO_UNSET warnings
when the name is used in parameter expansion or math.
The typeset -AEFHLRTZailux options are applied upon the first
assignment to the variable. Explicit unset before the first
assignment discards all of those properties. If any option is
applied to an existing name, historic behavior is unchanged.
Consequent to the foregoing, the (t) parameter expansion flag
prints nothing until after the first assignment, and the (i)
and (I) subscript flags also print nothing.
The bash behavior of "unset foo; typeset -p foo" is NOT used.
This is called out as an emulation distinction, not a change.
The test cases have not been updated, so several now fail.
The test harness has been updated to declare default values.
Diffstat (limited to 'Test')
| -rw-r--r-- | Test/runtests.zsh | 2 | ||||
| -rwxr-xr-x | Test/ztst.zsh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Test/runtests.zsh b/Test/runtests.zsh index 562234d91..b66d579b6 100644 --- a/Test/runtests.zsh +++ b/Test/runtests.zsh @@ -7,7 +7,7 @@ emulate zsh # protect from catastrophic failure of an individual test. # We could probably do that with subshells instead. -integer success failure skipped retval +integer success=0 failure=0 skipped=0 retval for file in "${(f)ZTST_testlist}"; do $ZTST_exe +Z -f $ZTST_srcdir/ztst.zsh $file retval=$? diff --git a/Test/ztst.zsh b/Test/ztst.zsh index e668ae942..a59c06dcf 100755 --- a/Test/ztst.zsh +++ b/Test/ztst.zsh @@ -60,7 +60,7 @@ ZTST_mainopts=(${(kv)options}) ZTST_testdir=$PWD ZTST_testname=$1 -integer ZTST_testfailed +integer ZTST_testfailed=0 # This is POSIX nonsense. Because of the vague feeling someone, somewhere # may one day need to examine the arguments of "tail" using a standard |
