summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2021-12-12 06:57:02 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2021-12-12 06:57:02 +0100
commit95d7a794cc48312c41a34ef9cdc0e5c95f35d2ac (patch)
treefc5814e5b5df0e8cdb64d9dfe52d974dacc2a5c5 /test
parent2d116c432d2a561fac69916d78b7a70dd6144ac7 (diff)
downloademacs-95d7a794cc48312c41a34ef9cdc0e5c95f35d2ac.tar.gz
Update bovine/gcc-tests for newer Macos versions
* test/lisp/cedet/semantic/bovine/gcc-tests.el (semantic-gcc-test-output-parser-this-machine): Update gcc->llvm detection to Macos Monterey.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/cedet/semantic/bovine/gcc-tests.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/lisp/cedet/semantic/bovine/gcc-tests.el b/test/lisp/cedet/semantic/bovine/gcc-tests.el
index d049f95b4cd..ba84ce4d81b 100644
--- a/test/lisp/cedet/semantic/bovine/gcc-tests.el
+++ b/test/lisp/cedet/semantic/bovine/gcc-tests.el
@@ -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