Home | History | Annotate | Download | only in gbench

Lines Matching refs:benchmark_flags

87 def find_benchmark_flag(prefix, benchmark_flags):
95 for f in benchmark_flags:
100 def remove_benchmark_flags(prefix, benchmark_flags):
102 Return a new list containing the specified benchmark_flags except those
106 return [f for f in benchmark_flags if not f.startswith(prefix)]
117 def run_benchmark(exe_name, benchmark_flags):
120 'benchmark_flags'. The benchmark is run directly as a subprocess to preserve
125 benchmark_flags)
131 benchmark_flags = list(benchmark_flags) + \
134 cmd = [exe_name] + benchmark_flags
146 def run_or_load_benchmark(filename, benchmark_flags):
157 return run_benchmark(filename, benchmark_flags)