diff options
| author | Glenn Morris | 2013-09-14 17:10:45 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-09-14 17:10:45 -0700 |
| commit | 1e53bb4bf2754c724bcb894e730fd77e25dae80c (patch) | |
| tree | 446081c5b29310e9bf0a798c75b6505b867a5b81 /test | |
| parent | 0d8863b3b1829f8e53da8dff9ffc2dab60390da6 (diff) | |
| download | emacs-1e53bb4bf2754c724bcb894e730fd77e25dae80c.tar.gz emacs-1e53bb4bf2754c724bcb894e730fd77e25dae80c.zip | |
* lisp/eshell/esh-cmd.el (eshell--local-vars): New variable.
(eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
* lisp/eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
* test/automated/eshell.el (eshell-test/for-name-shadow-loop):
New test.
(eshell-test/for-loop, eshell-test/for-name-loop): Doc fix.
Fixes: debbugs:15372
Diffstat (limited to 'test')
| -rw-r--r-- | test/ChangeLog | 6 | ||||
| -rw-r--r-- | test/automated/eshell.el | 10 |
2 files changed, 14 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 21b22425fb6..85119db69f2 100644 --- a/test/ChangeLog +++ b/test/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2013-09-15 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * automated/eshell.el (eshell-test/for-name-shadow-loop): | ||
| 4 | New test. (Bug#15372) | ||
| 5 | (eshell-test/for-loop, eshell-test/for-name-loop): Doc fix. | ||
| 6 | |||
| 1 | 2013-09-13 Glenn Morris <rgm@gnu.org> | 7 | 2013-09-13 Glenn Morris <rgm@gnu.org> |
| 2 | 8 | ||
| 3 | * automated/eshell.el (with-temp-eshell): | 9 | * automated/eshell.el (with-temp-eshell): |
diff --git a/test/automated/eshell.el b/test/automated/eshell.el index b9eb31660f1..6f7a35371a6 100644 --- a/test/automated/eshell.el +++ b/test/automated/eshell.el | |||
| @@ -75,17 +75,23 @@ | |||
| 75 | (should (equal (eshell-test-command-result "(+ 1 2)") 3))) | 75 | (should (equal (eshell-test-command-result "(+ 1 2)") 3))) |
| 76 | 76 | ||
| 77 | (ert-deftest eshell-test/for-loop () | 77 | (ert-deftest eshell-test/for-loop () |
| 78 | "Test `eshell-command-result' with an elisp command." | 78 | "Test `eshell-command-result' with a for loop.." |
| 79 | (let ((process-environment (cons "foo" process-environment))) | 79 | (let ((process-environment (cons "foo" process-environment))) |
| 80 | (should (equal (eshell-test-command-result | 80 | (should (equal (eshell-test-command-result |
| 81 | "for foo in 5 { echo $foo }") 5)))) | 81 | "for foo in 5 { echo $foo }") 5)))) |
| 82 | 82 | ||
| 83 | (ert-deftest eshell-test/for-name-loop () ;Bug#15231 | 83 | (ert-deftest eshell-test/for-name-loop () ;Bug#15231 |
| 84 | "Test `eshell-command-result' with an elisp command." | 84 | "Test `eshell-command-result' with a for loop using `name'." |
| 85 | (let ((process-environment (cons "name" process-environment))) | 85 | (let ((process-environment (cons "name" process-environment))) |
| 86 | (should (equal (eshell-test-command-result | 86 | (should (equal (eshell-test-command-result |
| 87 | "for name in 3 { echo $name }") 3)))) | 87 | "for name in 3 { echo $name }") 3)))) |
| 88 | 88 | ||
| 89 | (ert-deftest eshell-test/for-name-shadow-loop () ; bug#15372 | ||
| 90 | "Test `eshell-command-result' with a for loop using an env-var." | ||
| 91 | (let ((process-environment (cons "name=env-value" process-environment))) | ||
| 92 | (should (equal (eshell-test-command-result | ||
| 93 | "for name in 3 { echo $name }") 3)))) | ||
| 94 | |||
| 89 | (ert-deftest eshell-test/lisp-command-args () | 95 | (ert-deftest eshell-test/lisp-command-args () |
| 90 | "Test `eshell-command-result' with elisp and trailing args. | 96 | "Test `eshell-command-result' with elisp and trailing args. |
| 91 | Test that trailing arguments outside the S-expression are | 97 | Test that trailing arguments outside the S-expression are |