]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't fail flymake-tests if `gcc` actually is Clang
authorMattias Engdegård <mattiase@acm.org>
Sun, 2 Jan 2022 12:00:13 +0000 (13:00 +0100)
committerMattias Engdegård <mattiase@acm.org>
Sun, 2 Jan 2022 12:59:07 +0000 (13:59 +0100)
* test/lisp/progmodes/flymake-tests.el (flymake-tests--gcc-is-clang)
(different-diagnostic-types, included-c-header-files): Skip tests that
depend on the `gcc` command really being GCC and not Clang.

test/lisp/progmodes/flymake-tests.el

index 9e5147726f93b9d9d8a07c0d188e869c6ab7f802..ced7b5aacedb4e6603553525932ca9043e9ee7cb 100644 (file)
@@ -140,9 +140,15 @@ SEVERITY-PREDICATE is used to setup
         (flymake-goto-next-error)
         (should (eq 'flymake-error (face-at-point)))))))
 
+(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")
+                    (not (flymake-tests--gcc-is-clang))
                     (version<=
                      "5" (string-trim
                           (shell-command-to-string "gcc -dumpversion")))
@@ -166,7 +172,9 @@ SEVERITY-PREDICATE is used to setup
 
 (ert-deftest included-c-header-files ()
   "Test inclusion of .h header files."
-  (skip-unless (and (executable-find "gcc") (executable-find "make")))
+  (skip-unless (and (executable-find "gcc")
+                    (not (flymake-tests--gcc-is-clang))
+                    (executable-find "make")))
   (let ((flymake-wrap-around nil))
     (flymake-tests--with-flymake
         ("some-problems.h")