diff options
author | Peter Stephenson <pws@zsh.org> | 2017-03-03 10:20:09 +0000 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2017-03-03 10:20:16 +0000 |
commit | efe5e6a2f035d368b62c04b559e78393e0e5322d (patch) | |
tree | bb4f36d3e4ebbcc8f50b24b8012349f09794590f /Test | |
parent | 67c5d83df33cf46e5bf0d2f90bbc0f994e93f938 (diff) | |
download | zsh-efe5e6a2f035d368b62c04b559e78393e0e5322d.tar.gz zsh-efe5e6a2f035d368b62c04b559e78393e0e5322d.tar.xz zsh-efe5e6a2f035d368b62c04b559e78393e0e5322d.zip |
40173: No error on failure to load zsh/db/gdbm in test.
This is a soft error causing the test to be skipped, with a report to that effect.
Diffstat (limited to 'Test')
-rw-r--r-- | Test/V11db_gdbm.ztst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/V11db_gdbm.ztst b/Test/V11db_gdbm.ztst index 486ad4802..1d80f28f8 100644 --- a/Test/V11db_gdbm.ztst +++ b/Test/V11db_gdbm.ztst @@ -4,7 +4,7 @@ modname="zsh/db/gdbm" dbfile=db.gdbm - if ! zmodload $modname ; then + if ! zmodload $modname 2>/dev/null; then ZTST_unimplemented="can't load $modname module for testing" fi rm -f db.gdbm |