aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorMattias EngdegÄrd2023-08-09 10:23:28 +0200
committerMattias EngdegÄrd2023-08-09 10:23:28 +0200
commitff21717f05b2cd48015a8c05d89a1ff7e598fb1b (patch)
treeecdbed4555b80acb0b674e712af28baa2dce3955 /test/src
parent4767f5eaeedef57dfcc119399e5855f41c2e1be5 (diff)
downloademacs-ff21717f05b2cd48015a8c05d89a1ff7e598fb1b.tar.gz
emacs-ff21717f05b2cd48015a8c05d89a1ff7e598fb1b.zip
Disable failing test (bug#65156)
* test/src/fileio-tests.el (fileio-tests--non-regular-insert): Mark as :unstable, since /dev/urandom is seekable. Do not merge to master.
Diffstat (limited to 'test/src')
-rw-r--r--test/src/fileio-tests.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/src/fileio-tests.el b/test/src/fileio-tests.el
index 50642420ce9..5bc1024ff20 100644
--- a/test/src/fileio-tests.el
+++ b/test/src/fileio-tests.el
@@ -194,6 +194,8 @@ Also check that an encoding error can appear in a symlink."
194 (should (equal (file-name-concat "" "") ""))) 194 (should (equal (file-name-concat "" "") "")))
195 195
196(ert-deftest fileio-tests--non-regular-insert () 196(ert-deftest fileio-tests--non-regular-insert ()
197 ;; Fails in Emacs 29 because /dev/urandom is typically seekable (bug#65156)
198 :tags '(:unstable)
197 (skip-unless (file-exists-p "/dev/urandom")) 199 (skip-unless (file-exists-p "/dev/urandom"))
198 (with-temp-buffer 200 (with-temp-buffer
199 (set-buffer-multibyte nil) 201 (set-buffer-multibyte nil)