File: skip-unreadable-dir-test.patch

package info (click to toggle)
ruby-rack 2.2.13-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,648 kB
  • sloc: ruby: 16,018; sh: 12; makefile: 7; javascript: 1
file content (16 lines) | stat: -rw-r--r-- 492 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: skip unreadable directories test
 this test failed on reprotest due to reprotest run as root.
 see: https://salsa.debian.org/salsa-ci-team/pipeline/-/issues/160
Author: HIGUCHI Daisuke (VDR dai) <dai@debian.org>
Forwarded: not-needed

--- a/test/spec_directory.rb
+++ b/test/spec_directory.rb
@@ -54,6 +54,7 @@
   end
 
   it "return 404 for unreadable directories" do
+    skip
     begin
       File.write('test/cgi/unreadable', '')
       File.chmod(0, 'test/cgi/unreadable')