diff options
author | Philipp Stephani <phst@google.com> | 2021-12-28 21:05:23 +0100 |
---|---|---|
committer | Philipp Stephani <phst@google.com> | 2021-12-28 21:07:32 +0100 |
commit | 6e52becfbe2a33c025b8c4838b3c8f06ba5a6fb8 (patch) | |
tree | 19e4f83293c22211800c1a4806f25b4b2a87e7ba /test/lisp/cedet/semantic | |
parent | 2033f950fa37e9177c07eee0f5cab8a0eda37c4b (diff) | |
download | emacs-6e52becfbe2a33c025b8c4838b3c8f06ba5a6fb8.tar.gz emacs-6e52becfbe2a33c025b8c4838b3c8f06ba5a6fb8.tar.bz2 emacs-6e52becfbe2a33c025b8c4838b3c8f06ba5a6fb8.zip |
Fix test lisp/cedet/semantic/bovine/gcc-tests on macOS (Bug#52431)
* test/lisp/cedet/semantic/bovine/gcc-tests.el
(semantic-gcc-test-output-parser-this-machine): Also detect Apple
clang on macOS Monterey.
Diffstat (limited to 'test/lisp/cedet/semantic')
-rw-r--r-- | test/lisp/cedet/semantic/bovine/gcc-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/cedet/semantic/bovine/gcc-tests.el b/test/lisp/cedet/semantic/bovine/gcc-tests.el index ba84ce4d81b..04a02ec03bd 100644 --- a/test/lisp/cedet/semantic/bovine/gcc-tests.el +++ b/test/lisp/cedet/semantic/bovine/gcc-tests.el @@ -128,7 +128,7 @@ gcc version 2.95.2 19991024 (release)" ;; 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 looks like that's the case. - (unless (string-match "Apple LLVM\\|Xcode.app" + (unless (string-match "Apple \\(LLVM\\|clang\\)\\|Xcode\\.app" (car semantic-gcc-test-strings)) (semantic-gcc-test-output-parser)))) |