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")
|