Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for wantNotStale (0.09 sec)

  1. src/cmd/go/go_test.go

    		tg.t.Errorf("wrong reason for Stale=true: %q, want %q", why, reason)
    	}
    }
    
    // wantNotStale fails with msg if pkg is stale.
    func (tg *testgoData) wantNotStale(pkg, reason, msg string) {
    	tg.t.Helper()
    	stale, why := tg.isStale(pkg)
    	if stale {
    		tg.t.Fatal(msg)
    	}
    	if reason == "" && why != "" || !strings.Contains(why, reason) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top