Commit 385fb783 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

posixtest: run tests against normal filesystem

Change-Id: I4c61fa0f522fa07d0c02d8c7261a6c82ab6756a8
parent 22567ce3
// Copyright 2023 the Go-FUSE Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package posixtest
import "testing"
func TestAll(t *testing.T) {
for k, fn := range All {
if k == "FcntlFlockLocksFile" {
// TODO - fix this test.
continue
}
t.Run(k, func(t *testing.T) {
dir := t.TempDir()
fn(t, dir)
})
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment