Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Test/V01private.ztst skipped (was: zsh 5.1.1-test-1)
- X-seq: zsh-workers 37178
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: Zsh hackers list <zsh-workers@xxxxxxx>
- Subject: Re: Test/V01private.ztst skipped (was: zsh 5.1.1-test-1)
- Date: Sat, 21 Nov 2015 17:14:56 -0800
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=from:message-id:date:in-reply-to:comments:references:to:subject :mime-version:content-type; bh=zCR9ThZ7Xlaf18eemB5R9T66kyNLMjeFTQyjbFBAY3w=; b=SQBuF/0ckGIigj9+uP0tv+lfcza5QPBnTu2haOtzDGoOiIvq1n8zdpxwyp5KQtbVTe nhE9jz6zea1kIlcXnaw6wHHha1Gvcc1KQQJKhFnQuBwMGOJOdOy3xqW0KWa0tMyt3//9 haNeOzHaxvUdtGYgEtsQw6FQBJs9mJQD5Pq+dRlqEhc/f8PdHefYCrKIsDI71NRCu4Y1 AA8h9GVtpfCtcUUWeNNh87vEFdedlIxTyHWITqL2uir2KhTFFs68v+Hq9HXQ0CVYtpRZ 6QbPsvDWppWUBZajTPWELwPNy58g/QZk2C5PxuY4OnJFDYrnjFFm6ul79TNZbzSksKtt S6eQ==
- In-reply-to: <20151121230142.GE2335@tarsus.local2>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <20151121183514.527eccf6@ntlworld.com> <20151121230142.GE2335@tarsus.local2>
On Nov 21, 11:01pm, Daniel Shahaf wrote:
}
} % make test
} (eval):4: failed to load module `zsh/param/private': /home/daniel/src/zsh/Test/Modules/zsh/param/private.so: cannot open shared object file: No such file or directory
So obviously the 2>/dev/null is in the wrong place.
No response to my grumbling in workers/37086 ...
diff --git a/Test/V10private.ztst b/Test/V10private.ztst
index 6c38e39..cefeba9 100644
--- a/Test/V10private.ztst
+++ b/Test/V10private.ztst
@@ -2,10 +2,11 @@
%prep
- if ! (zmodload zsh/param/private >/dev/null 2>/dev/null); then
+ if ! (zmodload zsh/param/private) >/dev/null 2>/dev/null; then
ZTST_unimplemented="can't load the zsh/param/private module for testing"
+ else
+ zmodload zsh/param/private
fi
- zmodload zsh/param/private
%test
Messages sorted by:
Reverse Date,
Date,
Thread,
Author