aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2021-12-12 06:57:02 +0100
committerLars Ingebrigtsen2021-12-12 06:57:02 +0100
commit95d7a794cc48312c41a34ef9cdc0e5c95f35d2ac (patch)
treefc5814e5b5df0e8cdb64d9dfe52d974dacc2a5c5
parent2d116c432d2a561fac69916d78b7a70dd6144ac7 (diff)
downloademacs-95d7a794cc48312c41a34ef9cdc0e5c95f35d2ac.tar.gz
emacs-95d7a794cc48312c41a34ef9cdc0e5c95f35d2ac.zip
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.
-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)"
127 ;; Some macOS machines run llvm when you type gcc. (!) 127 ;; Some macOS machines run llvm when you type gcc. (!)
128 ;; We can't even check if it's a symlink; it's a binary placed in 128 ;; We can't even check if it's a symlink; it's a binary placed in
129 ;; "/usr/bin/gcc". So check the output and just skip this test if 129 ;; "/usr/bin/gcc". So check the output and just skip this test if
130 ;; it says "Apple LLVM". 130 ;; it looks like that's the case.
131 (unless (string-match "Apple LLVM" (car semantic-gcc-test-strings)) 131 (unless (string-match "Apple LLVM\\|Xcode.app"
132 (car semantic-gcc-test-strings))
132 (semantic-gcc-test-output-parser)))) 133 (semantic-gcc-test-output-parser))))
133 134
134;;; gcc-tests.el ends here 135;;; gcc-tests.el ends here