From efe5e6a2f035d368b62c04b559e78393e0e5322d Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Fri, 3 Mar 2017 10:20:09 +0000 Subject: 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. --- ChangeLog | 3 +++ Test/V11db_gdbm.ztst | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d4be9f622..e7853f874 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2017-03-03 Peter Stephenson + * 40173: Test/V11db_gdbm.ztst: don't report an error if gdbm + module doesn't load as this simply causes the test to be skipped. + * 40702: Doc/Zsh/zle.yo, Src/Zle/zle_params.c: add KEYS_QUEUED_COUNT variable to ZLE parameters. 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 -- cgit 1.4.1