Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestWindowsGlob (0.17 sec)

  1. src/path/filepath/match_test.go

    	wantWithNoRoot := test.buildWant("")
    	if strings.Join(wantWithNoRoot, "_") == strings.Join(have, "_") {
    		return nil
    	}
    	return fmt.Errorf("Glob(%q) returns %q, but %q expected", p, have, want)
    }
    
    func TestWindowsGlob(t *testing.T) {
    	if runtime.GOOS != "windows" {
    		t.Skipf("skipping windows specific test")
    	}
    
    	tmpDir := tempDirCanonical(t)
    	if len(tmpDir) < 3 {
    		t.Fatalf("tmpDir path %q is too short", tmpDir)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top