Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestReadUniqueDirectoryEntries (0.24 sec)

  1. src/crypto/x509/root_unix_test.go

    	}
    
    	if !certPoolEqual(gotPool, wantPool) {
    		g, w := strCertPool(gotPool), strCertPool(wantPool)
    		t.Fatalf("Mismatched certPools\nGot:\n%s\n\nWant:\n%s", g, w)
    	}
    }
    
    func TestReadUniqueDirectoryEntries(t *testing.T) {
    	tmp := t.TempDir()
    	temp := func(base string) string { return filepath.Join(tmp, base) }
    	if f, err := os.Create(temp("file")); err != nil {
    		t.Fatal(err)
    	} else {
    		f.Close()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top