flymake-tests.el (warning-predicate-rx-gcc): Fix check.
* test/automated/flymake-tests.el (warning-predicate-rx-gcc): Also check that "make" is available, not just "gcc".
This commit is contained in:
parent
a9cdc4a23c
commit
1cd0e89ab9
1 changed files with 1 additions and 1 deletions
|
@ -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"))))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue