From 0880d5f6e1ad5006a022416cd21b974c7f5923b9 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Thu, 5 Nov 2015 19:40:42 +0100 Subject: [PATCH] * test/automated/process-tests.el: Skip tests when bash is not available (process-test-sentinel-accept-process-output) (process-test-sentinel-sit-for): skip-unless bash executable found. --- test/automated/process-tests.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/automated/process-tests.el b/test/automated/process-tests.el index 4a43a013fb4..ee9e4f35891 100644 --- a/test/automated/process-tests.el +++ b/test/automated/process-tests.el @@ -43,10 +43,12 @@ sentinel-called)) (ert-deftest process-test-sentinel-accept-process-output () + (skip-unless (executable-find "bash")) (should (process-test-sentinel-wait-function-working-p #'accept-process-output))) (ert-deftest process-test-sentinel-sit-for () + (skip-unless (executable-find "bash")) (should (process-test-sentinel-wait-function-working-p (lambda () (sit-for 0.01 t))))) -- 2.39.5