From: Lars Ingebrigtsen Date: Fri, 25 Dec 2020 20:19:37 +0000 (+0100) Subject: Disable some semantic tests on systems without g++ X-Git-Tag: emacs-28.0.90~4561 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e1eabc8ee114a171107e892a3ad1437a9d18069e;p=emacs.git Disable some semantic tests on systems without g++ * test/lisp/cedet/semantic-utest-ia.el: Disable g++ tests on systems without g++. --- diff --git a/test/lisp/cedet/semantic-utest-ia.el b/test/lisp/cedet/semantic-utest-ia.el index c99ef97b509..ea1a7790985 100644 --- a/test/lisp/cedet/semantic-utest-ia.el +++ b/test/lisp/cedet/semantic-utest-ia.el @@ -86,6 +86,7 @@ (should-not (semantic-ia-utest tst)))) (ert-deftest semantic-utest-ia-nsp.cpp () + (skip-unless (executable-find "g++")) (let ((tst (expand-file-name "testnsp.cpp" semantic-utest-test-directory))) (should (file-exists-p tst)) (should-not (semantic-ia-utest tst)))) @@ -96,6 +97,7 @@ (should-not (semantic-ia-utest tst)))) (ert-deftest semantic-utest-ia-namespace.cpp () + (skip-unless (executable-find "g++")) (let ((tst (expand-file-name "testnsp.cpp" semantic-utest-test-directory))) (should (file-exists-p tst)) (should-not (semantic-ia-utest tst))))