Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestGoListStdDoesNotIncludeCommands (0.32 sec)

  1. src/cmd/go/go_test.go

    	tg.parallel()
    	tg.run("list", "std")
    	first := tg.getStdout()
    	tg.run("list", "std")
    	if first != tg.getStdout() {
    		t.Error("go list std ordering is inconsistent")
    	}
    }
    
    func TestGoListStdDoesNotIncludeCommands(t *testing.T) {
    	tooSlow(t, "walks all of GOROOT/src")
    
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    	tg.run("list", "std")
    	tg.grepStdoutNot("cmd/", "go list std shows commands")
    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