diff options
Diffstat (limited to 'base/test/run_all_perftests.cc')
-rw-r--r-- | base/test/run_all_perftests.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/base/test/run_all_perftests.cc b/base/test/run_all_perftests.cc new file mode 100644 index 0000000..6d0a8ee --- /dev/null +++ b/base/test/run_all_perftests.cc @@ -0,0 +1,9 @@ +// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "base/test/perf_test_suite.h" + +int main(int argc, char** argv) { + return PerfTestSuite(argc, argv).Run(); +} |