summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2019-10-05 17:01:33 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2019-10-05 17:01:33 +0200
commit4f2de56830ea25d812b05c954abd0600a012f9ef (patch)
tree5f450cf058edc0d543759a6ce18dc9ea629f8e6a
parent9f6a59849f69efd1d8026b040b9e9a397df03499 (diff)
downloademacs-4f2de56830ea25d812b05c954abd0600a012f9ef.tar.gz
Remove some XEmacs compat code from the CEDET tests
-rw-r--r--test/manual/cedet/cedet-utests.el25
-rw-r--r--test/manual/cedet/srecode-tests.el4
2 files changed, 13 insertions, 16 deletions
diff --git a/test/manual/cedet/cedet-utests.el b/test/manual/cedet/cedet-utests.el
index 67a828bb295..b8f08886fe7 100644
--- a/test/manual/cedet/cedet-utests.el
+++ b/test/manual/cedet/cedet-utests.el
@@ -57,7 +57,7 @@
(require 'eieio-custom)
(customize-variable 'eieio-widget-test)))
("eieio: chart" . (lambda ()
- (if (cedet-utest-noninteractive)
+ (if noninteractive
(message " ** Skipping test in noninteractive mode.")
(chart-test-it-all))))
;;
@@ -77,7 +77,7 @@
("semanticdb: data cache" . semantic-test-data-cache)
("semantic: throw-on-input" .
(lambda ()
- (if (cedet-utest-noninteractive)
+ (if noninteractive
(message " ** Skipping test in noninteractive mode.")
(semantic-test-throw-on-input))))
@@ -145,14 +145,13 @@ of just logging the error."
(defun cedet-utest-noninteractive ()
"Return non-nil if running non-interactively."
- (if (featurep 'xemacs)
- (noninteractive)
- noninteractive))
+ (declare (obsolete nil "27.1"))
+ noninteractive)
;;;###autoload
(defun cedet-utest-batch ()
"Run the CEDET unit test in BATCH mode."
- (unless (cedet-utest-noninteractive)
+ (unless noninteractive
(error "`cedet-utest-batch' is to be used only with -batch"))
(condition-case err
(when (catch 'cedet-utest-exit-on-error
@@ -200,7 +199,7 @@ of just logging the error."
"Setup a frame and buffer for unit testing.
Optional argument TITLE is the title of this testing session."
(setq cedet-utest-log-timer (current-time))
- (if (cedet-utest-noninteractive)
+ (if noninteractive
(message "\n>> Setting up %s tests to run @ %s\n"
(or title "")
(current-time-string))
@@ -245,7 +244,7 @@ ERRORCONDITION is some error that may have occurred during testing."
(defun cedet-utest-log-shutdown-msg (title startime endtime)
"Show a shutdown message with TITLE, STARTIME, and ENDTIME."
- (if (cedet-utest-noninteractive)
+ (if noninteractive
(progn
(message "\n>> Test Suite %s ended at @ %s"
title
@@ -266,7 +265,7 @@ ERRORCONDITION is some error that may have occurred during testing."
(defun cedet-utest-show-log-end ()
"Show the end of the current unit test log."
- (unless (cedet-utest-noninteractive)
+ (unless noninteractive
(let* ((cb (current-buffer))
(cf (selected-frame))
(bw (or (get-buffer-window cedet-utest-buffer t)
@@ -282,7 +281,7 @@ ERRORCONDITION is some error that may have occurred during testing."
(defun cedet-utest-post-command-hook ()
"Hook run after the current log command was run."
- (if (cedet-utest-noninteractive)
+ (if noninteractive
(message "")
(save-excursion
(set-buffer cedet-utest-buffer)
@@ -299,7 +298,7 @@ ERRORCONDITION is some error that may have occurred during testing."
;; This next line makes sure we clear out status during logging.
(add-hook 'post-command-hook 'cedet-utest-post-command-hook)
- (if (cedet-utest-noninteractive)
+ (if noninteractive
(message " - Running %s ..." item)
(save-excursion
(set-buffer cedet-utest-buffer)
@@ -316,7 +315,7 @@ ERRORCONDITION is some error that may have occurred during testing."
Apply NOTES to the doneness of the log.
Apply ERR if there was an error in previous item.
Optional argument PRECR indicates to prefix the done msg w/ a newline."
- (if (cedet-utest-noninteractive)
+ (if noninteractive
;; Non-interactive-mode - show a message.
(if notes
(message " * %s {%s}" (or err "done") notes)
@@ -356,7 +355,7 @@ Optional argument PRECR indicates to prefix the done msg w/ a newline."
(defun cedet-utest-log(format &rest args)
"Log the text string FORMAT.
The rest of the ARGS are used to fill in FORMAT with `format'."
- (if (cedet-utest-noninteractive)
+ (if noninteractive
(apply 'message format args)
(save-excursion
(set-buffer cedet-utest-buffer)
diff --git a/test/manual/cedet/srecode-tests.el b/test/manual/cedet/srecode-tests.el
index 63d10973e51..94c5dbbd952 100644
--- a/test/manual/cedet/srecode-tests.el
+++ b/test/manual/cedet/srecode-tests.el
@@ -39,9 +39,7 @@ It is filled with some text."
(defun srecode-field-utest ()
"Test the srecode field manager."
(interactive)
- (if (featurep 'xemacs)
- (message "There is no XEmacs support for SRecode Fields.")
- (srecode-field-utest-impl)))
+ (srecode-field-utest-impl))
(defun srecode-field-utest-impl ()
"Implementation of the SRecode field utest."