From e1eabc8ee114a171107e892a3ad1437a9d18069e Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Fri, 25 Dec 2020 21:19:37 +0100 Subject: [PATCH] Disable some semantic tests on systems without g++ * test/lisp/cedet/semantic-utest-ia.el: Disable g++ tests on systems without g++. --- test/lisp/cedet/semantic-utest-ia.el | 2 ++ 1 file changed, 2 insertions(+) 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)))) -- 2.39.5