Chromium Code Reviews| Index: test/perf-tests/infra-test.cc |
| diff --git a/test/perf-tests/infra-test.cc b/test/perf-tests/infra-test.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..27bc2879e78505060a0689ffa77d02b0f50eafcd |
| --- /dev/null |
| +++ b/test/perf-tests/infra-test.cc |
| @@ -0,0 +1,15 @@ |
| +// Copyright 2014 the V8 project 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 "testing/gtest-support.h" |
| + |
| +namespace v8 { |
| +namespace infra { |
| + |
| +TEST(InfraTest, Constant) { |
| + printf("Trace(Constant), Result(10.0), StdDev(1.0)\n"); |
|
Michael Achenbach
2014/08/24 20:37:57
I think it might be useful to have one level of hi
Benedikt Meurer
2014/08/25 04:16:26
How about using the same output format as Chrome (
|
| +} |
| + |
| +} // namespace infra |
| +} // namespace v8 |