| 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..807f9872871d44cc6731a2fea55be338282d9c23
|
| --- /dev/null
|
| +++ b/test/perf-tests/infra-test.cc
|
| @@ -0,0 +1,18 @@
|
| +// 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) {
|
| + // Prints constant results to verify the infrastructure.
|
| + printf("RESULT Infra: Constant1= 11 count\n");
|
| + printf("RESULT Infra: Constant2= [10,5,10,15] count\n");
|
| + printf("RESULT Infra: Constant3= {12,1.2} count\n");
|
| +}
|
| +
|
| +} // namespace infra
|
| +} // namespace v8
|
|
|