[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master 273f4bd: Fix failing module tests on GNU/Linux
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] master 273f4bd: Fix failing module tests on GNU/Linux |
Date: |
Sun, 9 Jul 2017 19:43:24 -0400 (EDT) |
branch: master
commit 273f4bde39af5d87f10fd58f35b666dfa8a996a3
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>
Fix failing module tests on GNU/Linux
* test/src/emacs-module-tests.el
(module--test-assertions--load-non-live-object)
(module--test-assertions--call-emacs-from-gc):
Avoid test failures due to backtraces.
---
test/src/emacs-module-tests.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/src/emacs-module-tests.el b/test/src/emacs-module-tests.el
index 988a7a1..2aa85f0 100644
--- a/test/src/emacs-module-tests.el
+++ b/test/src/emacs-module-tests.el
@@ -230,7 +230,7 @@ aren’t accessed."
(should (eq (mod-test-invalid-store) 123))
(module--test-assertion (rx "Emacs value not found in "
(+ digit) " values of "
- (+ digit) " environments\n" eos)
+ (+ digit) " environments\n")
;; Storing and reloading a local value causes undefined behavior,
;; which should be detected by the module assertions.
(mod-test-invalid-store)
@@ -241,7 +241,7 @@ aren’t accessed."
during garbage collection."
(skip-unless (file-executable-p mod-test-emacs))
(module--test-assertion
- (rx "Module function called during garbage collection\n" eos)
+ (rx "Module function called during garbage collection\n")
(mod-test-invalid-finalizer)))
;;; emacs-module-tests.el ends here
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master 273f4bd: Fix failing module tests on GNU/Linux,
Glenn Morris <=