diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-12-21 18:01:23 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-12-21 18:02:05 +0100 |
commit | 32a764e106cb6ffbf5f596478d8318e256db58d7 (patch) | |
tree | 585bdb87017162796875d04630e114151f36350b /test/src | |
parent | 1a923e5ac642a914e8c789f95733dda5d64c4f14 (diff) | |
download | emacs-32a764e106cb6ffbf5f596478d8318e256db58d7.tar.gz emacs-32a764e106cb6ffbf5f596478d8318e256db58d7.tar.bz2 emacs-32a764e106cb6ffbf5f596478d8318e256db58d7.zip |
Fix some tests in --without-all builds
* test/lisp/image-tests.el (image-type/from-filename):
* test/src/image-tests.el (image-tests-init-image-library):
* test/src/thread-tests.el (threads-test-bug33073): Fix tests in
--without-all builds.
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/image-tests.el | 1 | ||||
-rw-r--r-- | test/src/thread-tests.el | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/test/src/image-tests.el b/test/src/image-tests.el index 2b236086b6f..e54d0df71f1 100644 --- a/test/src/image-tests.el +++ b/test/src/image-tests.el @@ -239,7 +239,6 @@ (ert-deftest image-tests-init-image-library () (skip-unless (fboundp 'init-image-library)) (should (init-image-library 'pbm)) ; built-in - (should (init-image-library 'xpm)) ; built-in (should-not (init-image-library 'invalid-image-type))) ;;; image-tests.el ends here diff --git a/test/src/thread-tests.el b/test/src/thread-tests.el index 52eace7e9d2..f1a8baedadd 100644 --- a/test/src/thread-tests.el +++ b/test/src/thread-tests.el @@ -389,6 +389,7 @@ (should (equal (thread-last-error) '(error "Die, die, die!"))))) (ert-deftest threads-test-bug33073 () + (skip-unless (fboundp 'make-thread)) (let ((th (make-thread 'ignore))) (should-not (equal th main-thread)))) |