summaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
authorPhilipp Stephani <phst@google.com>2018-09-21 19:28:08 +0200
committerPhilipp Stephani <phst@google.com>2019-03-21 20:10:27 +0100
commitee7ad83f20903208404a84b58b7a478b62924570 (patch)
treefcddf54dfdc25dc1cf1fbc6c515c8e727df8924e /test/src
parent107215596c1a8edfb239a88850d822642bc0e4af (diff)
downloademacs-ee7ad83f20903208404a84b58b7a478b62924570.tar.gz
Revert "Rely on conservative stack scanning to find "emacs_value"s"
This reverts commit 3eb93c07f7a60ac9ce8a16f10c3afd5a3a31243a. There was no consensus for that commit, see https://lists.gnu.org/archive/html/emacs-devel/2016-01/msg00150.html. Also, reverting this commit should fix Bug#31238.
Diffstat (limited to 'test/src')
-rw-r--r--test/src/emacs-module-tests.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/src/emacs-module-tests.el b/test/src/emacs-module-tests.el
index e30980b5993..35aaaa64b65 100644
--- a/test/src/emacs-module-tests.el
+++ b/test/src/emacs-module-tests.el
@@ -265,7 +265,8 @@ during garbage collection."
(skip-unless (file-executable-p mod-test-emacs))
(module--test-assertion
(rx "Module function called during garbage collection\n")
- (mod-test-invalid-finalizer)))
+ (mod-test-invalid-finalizer)
+ (garbage-collect)))
(ert-deftest module/describe-function-1 ()
"Check that Bug#30163 is fixed."