Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestCredentialNoSetGroups (0.5 sec)

  1. src/os/exec/exec_posix_test.go

    	registerHelperCommand("pwd", cmdPwd)
    }
    
    func cmdPwd(...string) {
    	pwd, err := os.Getwd()
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	fmt.Println(pwd)
    }
    
    func TestCredentialNoSetGroups(t *testing.T) {
    	if runtime.GOOS == "android" {
    		maySkipHelperCommand("echo")
    		t.Skip("unsupported on Android")
    	}
    	t.Parallel()
    
    	u, err := user.Current()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 20:21:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
Back to top