From: John Wiegley Date: Mon, 18 Jun 2001 20:03:33 +0000 (+0000) Subject: Disabled a test that often yields false failures. X-Git-Tag: emacs-pretest-21.0.104~217 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0c00c5acabadda6eefce8c0731562983241f55ae;p=emacs.git Disabled a test that often yields false failures. --- diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el index 91bb34782df..aea8158c7ce 100644 --- a/lisp/eshell/esh-mode.el +++ b/lisp/eshell/esh-mode.el @@ -745,19 +745,19 @@ newline." (run-hooks 'eshell-post-command-hook) (insert-and-inherit input))))))))) -(eshell-deftest proc send-to-subprocess - "Send input to a subprocess" - ;; jww (1999-12-06): what about when bc is unavailable? - (if (not (eshell-search-path "bc")) - t - (eshell-insert-command "bc") - (eshell-insert-command "1 + 2") - (sit-for 1 0) - (forward-line -1) - (prog1 - (looking-at "3\n") - (eshell-insert-command "quit") - (sit-for 1 0)))) +; (eshell-deftest proc send-to-subprocess +; "Send input to a subprocess" +; ;; jww (1999-12-06): what about when bc is unavailable? +; (if (not (eshell-search-path "bc")) +; t +; (eshell-insert-command "bc") +; (eshell-insert-command "1 + 2") +; (sit-for 1 0) +; (forward-line -1) +; (prog1 +; (looking-at "3\n") +; (eshell-insert-command "quit") +; (sit-for 1 0)))) (defsubst eshell-kill-new () "Add the last input text to the kill ring."