Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for benchmarkworker (0.25 sec)

  1. src/internal/fuzz/worker_test.go

    package fuzz
    
    import (
    	"context"
    	"errors"
    	"flag"
    	"fmt"
    	"internal/race"
    	"io"
    	"os"
    	"os/signal"
    	"reflect"
    	"strconv"
    	"testing"
    	"time"
    )
    
    var benchmarkWorkerFlag = flag.Bool("benchmarkworker", false, "")
    
    func TestMain(m *testing.M) {
    	flag.Parse()
    	if *benchmarkWorkerFlag {
    		runBenchmarkWorker()
    		return
    	}
    	os.Exit(m.Run())
    }
    
    func BenchmarkWorkerFuzzOverhead(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.8K bytes
    - Viewed (0)
Back to top