| Index: vm/benchmark_test.h
|
| ===================================================================
|
| --- vm/benchmark_test.h (revision 7204)
|
| +++ vm/benchmark_test.h (working copy)
|
| @@ -66,11 +66,14 @@
|
| void Run() { (*run_)(this); }
|
| void RunBenchmark();
|
|
|
| - static void RunAll();
|
| + static void RunAll(const char* executable);
|
| + static void SetExecutable(const char* arg) { executable_ = arg; }
|
| + static const char* Executable() { return executable_; }
|
|
|
| private:
|
| static Benchmark* first_;
|
| static Benchmark* tail_;
|
| + static const char* executable_;
|
|
|
| RunEntry* const run_;
|
| const char* name_;
|
|
|