diff options
| -rw-r--r-- | test/automated/flymake-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/automated/flymake-tests.el b/test/automated/flymake-tests.el index a77c31638a5..11231bc3f7a 100644 --- a/test/automated/flymake-tests.el +++ b/test/automated/flymake-tests.el @@ -50,7 +50,7 @@ (ert-deftest warning-predicate-rx-gcc () "Test GCC warning via regexp predicate." - (skip-unless (executable-find "gcc")) + (skip-unless (and (executable-find "gcc") (executable-find "make"))) (should (eq 'flymake-warnline (flymake-tests--current-face "test.c" "^[Ww]arning")))) |
