]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix failing module tests on GNU/Linux
authorGlenn Morris <rgm@gnu.org>
Sun, 9 Jul 2017 23:43:09 +0000 (16:43 -0700)
committerGlenn Morris <rgm@gnu.org>
Sun, 9 Jul 2017 23:43:09 +0000 (16:43 -0700)
* 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

index 988a7a178c6aef143b35c122cd05f0ef6374f2e3..2aa85f0b247afc160e41c884e9a210433ebf7a6d 100644 (file)
@@ -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