diff options
| author | Lars Ingebrigtsen | 2021-12-12 06:57:02 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-12-12 06:57:02 +0100 |
| commit | 95d7a794cc48312c41a34ef9cdc0e5c95f35d2ac (patch) | |
| tree | fc5814e5b5df0e8cdb64d9dfe52d974dacc2a5c5 | |
| parent | 2d116c432d2a561fac69916d78b7a70dd6144ac7 (diff) | |
| download | emacs-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.el | 5 |
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 |