Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestDirFSPathsValid (0.25 sec)

  1. src/os/os_test.go

    		filepath.ToSlash(cwd) + "/testdata/dirfs/a", // not DirFS("/")
    	} {
    		_, err := d.Open(path)
    		if err == nil {
    			t.Fatalf(`DirFS("").Open(%q) succeeded`, path)
    		}
    	}
    }
    
    func TestDirFSPathsValid(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		t.Skipf("skipping on Windows")
    	}
    	t.Parallel()
    
    	d := t.TempDir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top