summaryrefslogtreecommitdiff
path: root/test/src/thread-tests.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2017-01-18 18:00:16 +0200
committerEli Zaretskii <eliz@gnu.org>2017-01-18 18:00:16 +0200
commit571532605bc0db221c76e36067435e4355e0d1a1 (patch)
tree5a8120468d552a682c5bbfc1ec9f83c80d364b11 /test/src/thread-tests.el
parentdbb29d7eb428dd53617d31a9cc159d889deb1e8e (diff)
downloademacs-571532605bc0db221c76e36067435e4355e0d1a1.tar.gz
emacs-571532605bc0db221c76e36067435e4355e0d1a1.tar.bz2
emacs-571532605bc0db221c76e36067435e4355e0d1a1.zip
Rudimentary error handling for non-main threads
* src/thread.c (last_thread_error): New static variable. (syms_of_threads): Staticpro it. (record_thread_error, Fthread_last_error): New functions. (syms_of_threads): Defsubr Fthread_last_error. * doc/lispref/threads.texi (Basic Thread Functions): Document thread-last-error. * test/src/thread-tests.el (thread-errors, thread-signal-early) (threads-condvar-wait): Test the values returned by thread-last-error.
Diffstat (limited to 'test/src/thread-tests.el')
-rw-r--r--test/src/thread-tests.el17
1 files changed, 13 insertions, 4 deletions
diff --git a/test/src/thread-tests.el b/test/src/thread-tests.el
index df8222a21aa..849b2e3dd1b 100644
--- a/test/src/thread-tests.el
+++ b/test/src/thread-tests.el
@@ -222,8 +222,15 @@
(ert-deftest thread-errors ()
"Test what happens when a thread signals an error."
- (should (threadp (make-thread #'call-error "call-error")))
- (should (threadp (make-thread #'thread-custom "thread-custom"))))
+ (let (th1 th2)
+ (setq th1 (make-thread #'call-error "call-error"))
+ (should (threadp th1))
+ (while (thread-alive-p th1)
+ (thread-yield))
+ (should (equal (thread-last-error)
+ '(error "Error is called")))
+ (setq th2 (make-thread #'thread-custom "thread-custom"))
+ (should (threadp th2))))
(ert-deftest thread-sticky-point ()
"Test bug #25165 with point movement in cloned buffer."
@@ -242,7 +249,8 @@
(while t (thread-yield))))))
(thread-signal thread 'error nil)
(sit-for 1)
- (should-not (thread-alive-p thread))))
+ (should-not (thread-alive-p thread))
+ (should (equal (thread-last-error) '(error)))))
(defvar threads-condvar nil)
@@ -287,6 +295,7 @@
(thread-signal new-thread 'error '("Die, die, die!"))
(sleep-for 0.1)
;; Make sure the thread died.
- (should (= (length (all-threads)) 1))))
+ (should (= (length (all-threads)) 1))
+ (should (equal (thread-last-error) '(error "Die, die, die!")))))
;;; threads.el ends here