1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Merge remote-tracking branch 'origin/emacs-28' into trunk

This commit is contained in:
Stefan Monnier 2022-01-12 15:57:29 -05:00
commit 917a623a9d
6 changed files with 20 additions and 15 deletions

View file

@ -145,6 +145,11 @@ SEVERITY-PREDICATE is used to setup
(string-match "[Cc]lang version "
(shell-command-to-string "gcc --version")))
(defun flymake-tests--gcc-is-clang ()
"Whether the `gcc' command actually runs the Clang compiler."
(string-match "[Cc]lang version "
(shell-command-to-string "gcc --version")))
(ert-deftest different-diagnostic-types ()
"Test GCC warning via function predicate."
(skip-unless (and (executable-find "gcc")