X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=tests%2Fautomated%2Ftag-tests.el;h=75f5d5bdad7fe9e53a58905ea3e143f6990561b6;hb=20cf9e8f27beb2bd957c2d5c2ba711f80f85fba3;hp=89e5ad675c7fe4f66b70c8c41705798aa709d240;hpb=ee38d21b330f5001b47a577cefb5ba7b82a3b7d3;p=chise%2Fxemacs-chise.git- diff --git a/tests/automated/tag-tests.el b/tests/automated/tag-tests.el index 89e5ad6..75f5d5b 100644 --- a/tests/automated/tag-tests.el +++ b/tests/automated/tag-tests.el @@ -68,20 +68,23 @@ If FILENAME is omitted, the printname of FEATURE is used as the file name. (let ((tags-always-exact t)) ;; Search for the tag "mystruct"; this should succeed - (find-tag "mystruct") + (Silence-Message + (find-tag "mystruct")) (Assert (eq (point) 2)) ;; Search again. The search should fail, based on the patch that ;; Sven Grundmann submitted for 21.4.16. (Check-Error-Message error "No more entries matching mystruct" - (tags-loop-continue))) + (Silence-Message + (tags-loop-continue)))) (let ((tags-always-exact nil)) ;; Search for the definition of "require". Until the etags.el upgrade ;; from 21.5 in 21.4.16, this test would fail. (condition-case nil - (find-tag "require") + (Silence-Message + (find-tag "require")) (t t)) (Assert (eq (point) 52)))