]> git.eshelyaron.com Git - emacs.git/commitdiff
Update bovine/gcc-tests for newer Macos versions
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 12 Dec 2021 05:57:02 +0000 (06:57 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 12 Dec 2021 05:57:02 +0000 (06:57 +0100)
* test/lisp/cedet/semantic/bovine/gcc-tests.el
(semantic-gcc-test-output-parser-this-machine): Update gcc->llvm
detection to Macos Monterey.

test/lisp/cedet/semantic/bovine/gcc-tests.el

index d049f95b4cd0d97bf076f4f2949348e1236530a6..ba84ce4d81b266ea96520a020333debfad7c0a47 100644 (file)
@@ -127,8 +127,9 @@ gcc version 2.95.2 19991024 (release)"
     ;; Some macOS machines run llvm when you type gcc.  (!)
     ;; We can't even check if it's a symlink; it's a binary placed in
     ;; "/usr/bin/gcc".  So check the output and just skip this test if
-    ;; it says "Apple LLVM".
-    (unless (string-match "Apple LLVM" (car semantic-gcc-test-strings))
+    ;; it looks like that's the case.
+    (unless (string-match "Apple LLVM\\|Xcode.app"
+                          (car semantic-gcc-test-strings))
         (semantic-gcc-test-output-parser))))
 
 ;;; gcc-tests.el ends here