OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include <stdio.h> | 5 #include <stdio.h> |
6 | 6 |
7 #include "bin/file.h" | 7 #include "bin/file.h" |
8 | 8 |
9 #include "vm/benchmark_test.h" | 9 #include "vm/benchmark_test.h" |
10 #include "vm/dart.h" | 10 #include "vm/dart.h" |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 } else { | 131 } else { |
132 // Remove the first value (executable) from the arguments and | 132 // Remove the first value (executable) from the arguments and |
133 // exclude the last argument which is the test name. | 133 // exclude the last argument which is the test name. |
134 dart_argc = argc - 2; | 134 dart_argc = argc - 2; |
135 dart_argv = &argv[1]; | 135 dart_argv = &argv[1]; |
136 } | 136 } |
137 } | 137 } |
138 bool set_vm_flags_success = Flags::ProcessCommandLineFlags(dart_argc, | 138 bool set_vm_flags_success = Flags::ProcessCommandLineFlags(dart_argc, |
139 dart_argv); | 139 dart_argv); |
140 ASSERT(set_vm_flags_success); | 140 ASSERT(set_vm_flags_success); |
141 const char* err_msg = Dart::InitOnce(NULL, NULL, NULL, NULL); | 141 const char* err_msg = Dart::InitOnce(NULL, NULL, NULL, NULL, |
| 142 NULL, NULL, NULL); |
142 ASSERT(err_msg == NULL); | 143 ASSERT(err_msg == NULL); |
143 // Apply the filter to all registered tests. | 144 // Apply the filter to all registered tests. |
144 TestCaseBase::RunAll(); | 145 TestCaseBase::RunAll(); |
145 // Apply the filter to all registered benchmarks. | 146 // Apply the filter to all registered benchmarks. |
146 Benchmark::RunAll(argv[0]); | 147 Benchmark::RunAll(argv[0]); |
147 // Print a warning message if no tests or benchmarks were matched. | 148 // Print a warning message if no tests or benchmarks were matched. |
148 if (run_matches == 0) { | 149 if (run_matches == 0) { |
149 fprintf(stderr, "No tests matched: %s\n", run_filter); | 150 fprintf(stderr, "No tests matched: %s\n", run_filter); |
150 return 1; | 151 return 1; |
151 } | 152 } |
152 // Dump symbol information for the profiler. | 153 // Dump symbol information for the profiler. |
153 DumpPprofSymbolInfo(pprof_filename); | 154 DumpPprofSymbolInfo(pprof_filename); |
154 return 0; | 155 return 0; |
155 } | 156 } |
156 | 157 |
157 } // namespace dart | 158 } // namespace dart |
158 | 159 |
159 | 160 |
160 int main(int argc, const char** argv) { | 161 int main(int argc, const char** argv) { |
161 return dart::Main(argc, argv); | 162 return dart::Main(argc, argv); |
162 } | 163 } |
OLD | NEW |