Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/os/os_test.go

    		t.Fatalf("len(small) is %d, less than %d", len(small), len(all))
    	}
    	for i, n := range all {
    		if small[i] != n {
    			t.Errorf("small read %q mismatch: %v", small[i], n)
    		}
    	}
    }
    
    func TestReaddirNValues(t *testing.T) {
    	if testing.Short() {
    		t.Skip("test.short; skipping")
    	}
    	t.Parallel()
    
    	dir := t.TempDir()
    	for i := 1; i <= 105; i++ {
    		f, err := Create(filepath.Join(dir, fmt.Sprintf("%d", i)))
    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