File: 002-disable-getdents-test.patch

package info (click to toggle)
gocryptfs 2.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,132 kB
  • sloc: sh: 1,091; ansic: 208; makefile: 88
file content (20 lines) | stat: -rw-r--r-- 644 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Disable getdents tests
 The getdents tests may fail on filesystems that do not support extended
 attributes. They were disabled.
Author: Felix Lechner <felix.lechner@lease-up.com>
Forwarded: not-needed

---
 internal/syscallcompat/getdents_test.go |    1 +
 1 file changed, 1 insertion(+)

--- a/internal/syscallcompat/getdents_test.go
+++ b/internal/syscallcompat/getdents_test.go
@@ -18,6 +18,7 @@ import (
 var emulate = false
 
 func TestGetdents(t *testing.T) {
+	t.Skip("may fail on filesystems without extended attributes, disabled")
 	t.Logf("testing native getdents")
 	testGetdents(t)
 	t.Logf("testing emulateGetdents")