]> git.eshelyaron.com Git - emacs.git/commitdiff
Skip Eglot test if using very old clangd
authorJoão Távora <joaotavora@gmail.com>
Tue, 21 Mar 2023 18:43:58 +0000 (18:43 +0000)
committerJoão Távora <joaotavora@gmail.com>
Tue, 21 Mar 2023 18:43:58 +0000 (18:43 +0000)
* test/lisp/progmodes/eglot-tests.el (eglot--clangd-version): New
helper.
(eglot-test-diagnostic-tags-unnecessary-code): Use it.

test/lisp/progmodes/eglot-tests.el

index 7ac267327370f5ebd29894744cf70d155bf04cd5..c4b23bfd64e148e3264b9a1587efb070b49d6367 100644 (file)
@@ -314,6 +314,12 @@ then restored."
   (setq last-command-event char)
   (call-interactively (key-binding (vector char))))
 
+(defun eglot--clangd-version ()
+  "Report on the clangd version used in various tests."
+  (replace-regexp-in-string
+   ".*version[[:space:]]+\\(.*\\)" "\\1"
+   (car (split-string (shell-command-to-string "clangd --version") "\n"))))
+
 \f
 ;;; Unit tests
 
@@ -452,6 +458,7 @@ then restored."
 (ert-deftest eglot-test-diagnostic-tags-unnecessary-code ()
   "Test rendering of diagnostics tagged \"unnecessary\"."
   (skip-unless (executable-find "clangd"))
+  (skip-unless (version<= "14" (eglot--clangd-version)))
   (eglot--with-fixture
       `(("diag-project" .
          (("main.cpp" . "int main(){float a = 42.2; return 0;}"))))