(defun eshell-resume-eval ()
"Destructively evaluate a form which may need to be deferred."
- (eshell-condition-case err
- (progn
- (setq eshell-last-async-procs nil)
- (when eshell-current-command
- (let* (retval
- (procs (catch 'eshell-defer
- (ignore
- (setq retval
- (eshell-do-eval
- eshell-current-command))))))
- (if (eshell-process-list-p procs)
- (ignore (setq eshell-last-async-procs procs))
- (cadr retval)))))
- (error
- (error (error-message-string err)))))
+ (setq eshell-last-async-procs nil)
+ (when eshell-current-command
+ (eshell-condition-case err
+ (let* (retval
+ (procs (catch 'eshell-defer
+ (ignore
+ (setq retval
+ (eshell-do-eval
+ eshell-current-command))))))
+ (if retval
+ (cadr retval)
+ (ignore (setq eshell-last-async-procs procs))))
+ (error
+ (error (error-message-string err))))))
(defmacro eshell-manipulate (form tag &rest body)
"Manipulate a command FORM with BODY, using TAG as a debug identifier."
(skip-unless (and (executable-find "echo")
(executable-find "cat")))
(ert-with-temp-directory eshell-directory-name
- (let ((orig-processes (copy-tree (process-list)))
+ (let ((orig-processes (process-list))
(eshell-history-file-name nil))
(with-temp-buffer
(eshell-command "*echo hi | *cat &" t)
(eshell-wait-for (lambda () (equal (process-list) orig-processes)))
(should (equal (buffer-string) "hi\n"))))))
+(ert-deftest eshell-test/eshell-command/output-buffer/sync ()
+ "Test that the `eshell-command' function writes to its output buffer."
+ (skip-unless (executable-find "echo"))
+ (ert-with-temp-directory eshell-directory-name
+ (let ((orig-processes (process-list))
+ (eshell-history-file-name nil))
+ (eshell-command "*echo 'hi\nbye'")
+ (with-current-buffer "*Eshell Command Output*"
+ (should (equal (buffer-string) "hi\nbye")))
+ (kill-buffer "*Eshell Command Output*"))))
+
+(ert-deftest eshell-test/eshell-command/output-buffer/async ()
+ "Test that the `eshell-command' function writes to its async output buffer."
+ (skip-unless (executable-find "echo"))
+ (ert-with-temp-directory eshell-directory-name
+ (let ((orig-processes (process-list))
+ (eshell-history-file-name nil))
+ (eshell-command "*echo hi &")
+ (eshell-wait-for (lambda () (equal (process-list) orig-processes)))
+ (with-current-buffer "*Eshell Async Command Output*"
+ (goto-char (point-min))
+ (forward-line)
+ (should (looking-at "hi\n"))))))
+
(ert-deftest eshell-test/command-running-p ()
"Modeline should show no command running"
(with-temp-eshell