[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/hyperbole 62e9eb4b24 2/2: Add support for running tests
From: |
ELPA Syncer |
Subject: |
[elpa] externals/hyperbole 62e9eb4b24 2/2: Add support for running tests that are known to fail (#692) |
Date: |
Sun, 6 Apr 2025 18:58:53 -0400 (EDT) |
branch: externals/hyperbole
commit 62e9eb4b249db853953aa1e8a4d3f27d1ac37beb
Author: Mats Lidell <mats.lidell@lidells.se>
Commit: GitHub <noreply@github.com>
Add support for running tests that are known to fail (#692)
---
ChangeLog | 6 ++++++
Makefile | 13 ++++++++-----
test/hy-test-helpers.el | 5 ++++-
3 files changed, 18 insertions(+), 6 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 74a1287b1f..215bbbc140 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2025-04-06 Mats Lidell <matsl@gnu.org>
+* test/hy-test-helpers.el (hy-test-run-failing-flag): Set to non-nil to
+ activate failing test cases. Used by HYPB_ERT_FAILURE.
+
+* Makefile (HYPB_ERT_FAILURE): Command line controlled macro that tells if
+ failing test cases should be run.
+
* test/hywiki-tests.el (hywiki-tests--run-test-case): Remove per char
verification in DSL. Just verify after each insert or remove as whole.
(hywiki-tests--wikiword-step-check): Simplify tests after DSL change.
diff --git a/Makefile b/Makefile
index 1a743cde2e..5611dac951 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
# Author: Bob Weiner
#
# Orig-Date: 15-Jun-94 at 03:42:38
-# Last-Mod: 20-Mar-25 at 18:49:45 by Mats Lidell
+# Last-Mod: 6-Apr-25 at 19:45:20 by Mats Lidell
#
# Copyright (C) 1994-2023 Free Software Foundation, Inc.
# See the file HY-COPY for license information.
@@ -538,6 +538,9 @@ else
HYPB_ERT_BATCH = (ert-run-tests-batch-and-exit)
HYPB_ERT_INTERACTIVE = (ert-run-tests-interactively t)
endif
+ifeq ($(origin failure), command line)
+HYPB_ERT_FAILURE = (setq hy-test-run-failing-flag ${failure})
+endif
# For full backtrace run make test FULL_BT=<anything or even empty>
ifeq ($(origin FULL_BT), command line)
@@ -553,7 +556,7 @@ test-ert:
--eval "(let ((auto-save-default) (ert-batch-print-level 10) \
(ert-batch-print-length nil) \
$(HYPB_ERT_BATCH_BT) (ert-batch-backtrace-right-margin
2048)) \
- $(LOAD_TEST_ERT_FILES) $(HYPB_ERT_BATCH))"
+ $(LOAD_TEST_ERT_FILES) $(HYPB_ERT_FAILURE)
$(HYPB_ERT_BATCH))"
# Run all tests by starting an Emacs that runs the tests interactively in
windowed mode.
all-tests: test-all
@@ -562,14 +565,14 @@ test-all:
ifeq ($(TERM), dumb)
ifneq (,$(findstring .apple.,$(DISPLAY)))
# Found, on MacOS
- TERM=xterm-256color $(EMACS) --quick $(PRELOADS) --eval "(load-file
\"test/hy-test-dependencies.el\")" --eval "(let ((auto-save-default))
$(LOAD_TEST_ERT_FILES) $(HYPB_ERT_INTERACTIVE))"
+ TERM=xterm-256color $(EMACS) --quick $(PRELOADS) --eval "(load-file
\"test/hy-test-dependencies.el\")" --eval "(let ((auto-save-default))
$(LOAD_TEST_ERT_FILES) $(HYPB_ERT_FAILURE) $(HYPB_ERT_INTERACTIVE))"
else
# Not found, set TERM so tests will at least run within parent Emacs
session
- TERM=vt100 $(EMACS) --quick $(PRELOADS) --eval "(load-file
\"test/hy-test-dependencies.el\")" --eval "(let ($(LET_VARIABLES))
$(LOAD_TEST_ERT_FILES) $(HYPB_ERT_INTERACTIVE))"
+ TERM=vt100 $(EMACS) --quick $(PRELOADS) --eval "(load-file
\"test/hy-test-dependencies.el\")" --eval "(let ($(LET_VARIABLES))
$(LOAD_TEST_ERT_FILES) $(HYPB_ERT_FAILURE) $(HYPB_ERT_INTERACTIVE))"
endif
else
# Typical case, run emacs normally
- $(EMACS) --quick $(PRELOADS) --eval "(load-file
\"test/hy-test-dependencies.el\")" --eval "(let ($(LET_VARIABLES))
$(LOAD_TEST_ERT_FILES) $(HYPB_ERT_INTERACTIVE))"
+ $(EMACS) --quick $(PRELOADS) --eval "(load-file
\"test/hy-test-dependencies.el\")" --eval "(let ($(LET_VARIABLES))
$(LOAD_TEST_ERT_FILES) $(HYPB_ERT_FAILURE) $(HYPB_ERT_INTERACTIVE))"
endif
test-all-output:
diff --git a/test/hy-test-helpers.el b/test/hy-test-helpers.el
index b3db82f1cc..c9ada7d34e 100644
--- a/test/hy-test-helpers.el
+++ b/test/hy-test-helpers.el
@@ -3,7 +3,7 @@
;; Author: Mats Lidell <matsl@gnu.org>
;;
;; Orig-Date: 30-Jan-21 at 12:00:00
-;; Last-Mod: 26-Jan-25 at 18:24:56 by Bob Weiner
+;; Last-Mod: 6-Apr-25 at 19:45:02 by Mats Lidell
;;
;; SPDX-License-Identifier: GPL-3.0-or-later
;;
@@ -124,5 +124,8 @@ and the default WORD-LENGTH is 4."
(setq result (concat result (char-to-string (elt chars (random (length
chars)))))))
(replace-regexp-in-string "[[:space:]]" "" (capitalize result))))
+(defvar hy-test-run-failing-flag nil
+ "Non-nil means test cases that are known to fail will be tried.")
+
(provide 'hy-test-helpers)
;;; hy-test-helpers.el ends here