Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestIssue51617 (0.11 sec)

  1. src/io/fs/walk_test.go

    	}
    	walkTree(tree, tree.name, func(path string, n *Node) {
    		if n.mark != 1 {
    			t.Errorf("node %s mark = %d; expected 1", path, n.mark)
    		}
    		n.mark = 0
    	})
    }
    
    func TestIssue51617(t *testing.T) {
    	dir := t.TempDir()
    	for _, sub := range []string{"a", filepath.Join("a", "bad"), filepath.Join("a", "next")} {
    		if err := os.Mkdir(filepath.Join(dir, sub), 0755); err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 15:21:18 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. src/path/filepath/path_test.go

    		t.Errorf("EvalSymlinks(%q) = %q does not end with %q", check, resolved, wantSuffix)
    	} else {
    		t.Logf("EvalSymlinks(%q) = %q", check, resolved)
    	}
    }
    
    func TestIssue51617(t *testing.T) {
    	dir := t.TempDir()
    	for _, sub := range []string{"a", filepath.Join("a", "bad"), filepath.Join("a", "next")} {
    		if err := os.Mkdir(filepath.Join(dir, sub), 0755); err != nil {
    			t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top