diff options
author | Andrea Corallo <acorallo@gnu.org> | 2024-02-15 17:48:43 +0100 |
---|---|---|
committer | Andrea Corallo <acorallo@gnu.org> | 2024-02-15 17:48:43 +0100 |
commit | 4a0d430bdc3650ca3dfd8bdd14781764fbcbdc7e (patch) | |
tree | 9fcd36329a34bb0c14b822f9a7c9353350d71d37 /test/lisp/emacs-lisp | |
parent | aa849984896ce393afe92dd4fb7fbce494e131a4 (diff) | |
download | emacs-4a0d430bdc3650ca3dfd8bdd14781764fbcbdc7e.tar.gz emacs-4a0d430bdc3650ca3dfd8bdd14781764fbcbdc7e.tar.bz2 emacs-4a0d430bdc3650ca3dfd8bdd14781764fbcbdc7e.zip |
Update some native comp tests
* test/src/comp-tests.el (comp-tests-ret-type-spec-13)
(comp-tests-ret-type-spec-35): Update.
* test/lisp/emacs-lisp/comp-cstr-tests.el (comp-cstr-test-62)
(comp-cstr-test-75): Likewise.
Diffstat (limited to 'test/lisp/emacs-lisp')
-rw-r--r-- | test/lisp/emacs-lisp/comp-cstr-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lisp/emacs-lisp/comp-cstr-tests.el b/test/lisp/emacs-lisp/comp-cstr-tests.el index edc70b12d4b..c3a7092819d 100644 --- a/test/lisp/emacs-lisp/comp-cstr-tests.el +++ b/test/lisp/emacs-lisp/comp-cstr-tests.el @@ -170,7 +170,7 @@ The arg is an alist of: type specifier -> expected type specifier." ;; 61 ((and atom (not symbol)) . atom) ;; 62 - ((and atom (not string)) . (or array sequence atom)) + ((and atom (not string)) . (or array atom)) ;; 63 Conservative ((and symbol (not (member foo))) . symbol) ;; 64 Conservative @@ -196,7 +196,7 @@ The arg is an alist of: type specifier -> expected type specifier." ;; 74 ((and boolean (or number marker)) . nil) ;; 75 - ((and atom (or number marker)) . number-or-marker) + ((and atom (or number marker)) . (or integer-or-marker number-or-marker)) ;; 76 ((and symbol (or number marker)) . nil) ;; 77 |