Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: emulate test
- X-seq: zsh-workers 26545
- From: Peter Stephenson <p.w.stephenson@xxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxx (Zsh hackers list)
- Subject: PATCH: emulate test
- Date: Tue, 10 Feb 2009 20:17:55 +0000
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
I'm just about to look at sticky emulation; before I do here are some
tests for the existing code.
Index: Test/B07emulate.ztst
===================================================================
RCS file: Test/B07emulate.ztst
diff -N Test/B07emulate.ztst
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ Test/B07emulate.ztst 10 Feb 2009 20:15:58 -0000
@@ -0,0 +1,74 @@
+# Test the "emulate" builtin and related functions.
+
+%prep
+
+ isset() {
+ if [[ -o $1 ]]; then print yes; else print no; fi
+ }
+ showopts() {
+ # Set for Bourne shell emulation
+ isset shwordsplit
+ # Set in native mode and unless "emulate -R" is in use
+ isset banghist
+ }
+
+%test
+
+ (showopts
+ fn() {
+ emulate sh
+ }
+ fn
+ showopts)
+0:Basic use of emulate
+>no
+>yes
+>yes
+>yes
+
+ fn() {
+ emulate -L sh
+ showopts
+ }
+ showopts
+ fn
+ showopts
+0:Use of emulate -L
+>no
+>yes
+>yes
+>yes
+>no
+>yes
+
+ (showopts
+ emulate -R sh
+ showopts)
+0:Use of emulate -R
+>no
+>yes
+>yes
+>no
+
+ showopts
+ emulate sh -c 'showopts'
+ showopts
+0:Use of emulate -c
+>no
+>yes
+>yes
+>yes
+>no
+>yes
+
+
+ showopts
+ emulate -R sh -c 'showopts'
+ showopts
+0:Use of emulate -R -c
+>no
+>yes
+>yes
+>no
+>no
+>yes
--
Peter Stephenson <p.w.stephenson@xxxxxxxxxxxx>
Web page now at http://homepage.ntlworld.com/p.w.stephenson/
Messages sorted by:
Reverse Date,
Date,
Thread,
Author