Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for newChattyPrinter (0.26 sec)

  1. src/testing/sub_test.go

    				common: common{
    					signal:  make(chan bool),
    					barrier: make(chan bool),
    					name:    "",
    					w:       buf,
    				},
    				context: ctx,
    			}
    			if tc.chatty {
    				root.chatty = newChattyPrinter(root.w)
    				root.chatty.json = tc.json
    			}
    			ok := root.Run(tc.desc, tc.f)
    			ctx.release()
    
    			if ok != tc.ok {
    				t.Errorf("%s:ok: got %v; want %v", tc.desc, ok, tc.ok)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  2. src/testing/fuzz.go

    			tctx.deadline = deadline
    			fctx := &fuzzContext{deps: deps, mode: seedCorpusOnly}
    			root := common{w: os.Stdout} // gather output in one place
    			if Verbose() {
    				root.chatty = newChattyPrinter(root.w)
    			}
    			for _, ft := range fuzzTests {
    				if shouldFailFast() {
    					break
    				}
    				testName, matched, _ := tctx.match.fullName(nil, ft.Name)
    				if !matched {
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. src/testing/benchmark.go

    		benchFunc: func(b *B) {
    			for _, Benchmark := range bs {
    				b.Run(Benchmark.Name, Benchmark.F)
    			}
    		},
    		benchTime: benchTime,
    		context:   ctx,
    	}
    	if Verbose() {
    		main.chatty = newChattyPrinter(main.w)
    	}
    	main.runN(1)
    	return !main.failed
    }
    
    // processBench runs bench b for the configured CPU counts and prints the results.
    func (ctx *benchContext) processBench(b *B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/testing/testing.go

    type chattyPrinter struct {
    	w          io.Writer
    	lastNameMu sync.Mutex // guards lastName
    	lastName   string     // last printed test name in chatty mode
    	json       bool       // -v=json output mode
    }
    
    func newChattyPrinter(w io.Writer) *chattyPrinter {
    	return &chattyPrinter{w: w, json: chatty.json}
    }
    
    // prefix is like chatty.prefix but using p.json instead of chatty.json.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top