Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testEvalSymlinksAfterChdir (0.25 sec)

  1. src/path/filepath/path_windows_test.go

    	testEvalSymlinks(t, path, test.dest)
    
    	testEvalSymlinksAfterChdir(t, path, ".", test.dest)
    
    	testEvalSymlinksAfterChdir(t,
    		path,
    		filepath.VolumeName(tmpDir)+".",
    		test.dest)
    
    	testEvalSymlinksAfterChdir(t,
    		simpleJoin(tmpDir, "test"),
    		simpleJoin("..", test.path),
    		test.dest)
    
    	testEvalSymlinksAfterChdir(t, tmpDir, test.path, test.dest)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/path/filepath/path_test.go

    			dest = test.dest
    		}
    		testEvalSymlinks(t, path, dest)
    
    		// test EvalSymlinks(".")
    		testEvalSymlinksAfterChdir(t, path, ".", ".")
    
    		// test EvalSymlinks("C:.") on Windows
    		if runtime.GOOS == "windows" {
    			volDot := filepath.VolumeName(tmpDir) + "."
    			testEvalSymlinksAfterChdir(t, path, volDot, volDot)
    		}
    
    		// test EvalSymlinks(".."+path)
    		dotdotPath := simpleJoin("..", test.dest)
    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