emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master e1eabc8: Disable some semantic tests on systems without g++


From: Lars Ingebrigtsen
Subject: master e1eabc8: Disable some semantic tests on systems without g++
Date: Fri, 25 Dec 2020 15:19:53 -0500 (EST)

branch: master
commit e1eabc8ee114a171107e892a3ad1437a9d18069e
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    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 c99ef97..ea1a779 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))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]