blob: 7122cf7e0b036ab184cdb517357e1f85261a41dd [file] [log] [blame]
package benchmark
import (
"os"
"testing"
"v.io/core/veyron/lib/testutil/benchmark"
)
// A single empty test to avoid:
// testing: warning: no tests to run
// from showing up when running benchmarks in this package via "go test"
func TestNoOp(t *testing.T) {}
func TestMain(m *testing.M) {
os.Exit(benchmark.RunTestMain(m))
}