1# Matches no benchmarks 2go test -run '^$' -bench ThisWillNotMatch standalone_benchmark_test.go 3! stdout '^ok.*\[no tests to run\]' 4! stderr '^ok.*\[no tests to run\]' 5stdout '^ok' 6 7-- standalone_benchmark_test.go -- 8package standalone_benchmark 9 10import "testing" 11 12func Benchmark(b *testing.B) { 13}