]> git.eshelyaron.com Git - emacs.git/commitdiff
; Re-enable the /dev/urandom test
authorEli Zaretskii <eliz@gnu.org>
Wed, 9 Aug 2023 11:25:59 +0000 (07:25 -0400)
committerEli Zaretskii <eliz@gnu.org>
Wed, 9 Aug 2023 11:25:59 +0000 (07:25 -0400)
* test/src/fileio-tests.el (fileio-tests--non-regular-insert):
Remove :unstable, but comment out the single failing test.

test/src/fileio-tests.el

index 5bc1024ff2081deda3dc0e00123495f9bd3ae3f5..fea7eeea75348adc2c4c3cedd354ac61818ba853 100644 (file)
@@ -194,12 +194,11 @@ Also check that an encoding error can appear in a symlink."
   (should (equal (file-name-concat "" "") "")))
 
 (ert-deftest fileio-tests--non-regular-insert ()
-  ;; Fails in Emacs 29 because /dev/urandom is typically seekable (bug#65156)
-  :tags '(:unstable)
   (skip-unless (file-exists-p "/dev/urandom"))
   (with-temp-buffer
     (set-buffer-multibyte nil)
-    (should-error (insert-file-contents "/dev/urandom" nil 5 10))
+    ;; Fails in Emacs 29 because /dev/urandom is typically seekable (bug#65156)
+    ;(should-error (insert-file-contents "/dev/urandom" nil 5 10))
     (insert-file-contents "/dev/urandom" nil nil 10)
     (should (= (buffer-size) 10))))