File: posixtest_test.go

package info (click to toggle)
golang-github-hanwen-go-fuse 2.4.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,392 kB
  • sloc: cpp: 78; sh: 45; makefile: 16
file content (20 lines) | stat: -rw-r--r-- 413 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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)
		})
	}
}