Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Side by Side Diff: runtime/bin/run_vm_tests.cc

Issue 1275353005: VM thread shutdown. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Merge Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/bin/process.cc ('k') | runtime/bin/utils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 dart::bin::DartUtils::OpenFile, 107 dart::bin::DartUtils::OpenFile,
108 dart::bin::DartUtils::ReadFile, 108 dart::bin::DartUtils::ReadFile,
109 dart::bin::DartUtils::WriteFile, 109 dart::bin::DartUtils::WriteFile,
110 dart::bin::DartUtils::CloseFile, 110 dart::bin::DartUtils::CloseFile,
111 NULL); 111 NULL);
112 ASSERT(err_msg == NULL); 112 ASSERT(err_msg == NULL);
113 // Apply the filter to all registered tests. 113 // Apply the filter to all registered tests.
114 TestCaseBase::RunAll(); 114 TestCaseBase::RunAll();
115 // Apply the filter to all registered benchmarks. 115 // Apply the filter to all registered benchmarks.
116 Benchmark::RunAll(argv[0]); 116 Benchmark::RunAll(argv[0]);
117
118 if (Flags::IsSet("shutdown")) {
119 err_msg = Dart::Cleanup();
120 ASSERT(err_msg == NULL);
121 }
122
117 // Print a warning message if no tests or benchmarks were matched. 123 // Print a warning message if no tests or benchmarks were matched.
118 if (run_matches == 0) { 124 if (run_matches == 0) {
119 fprintf(stderr, "No tests matched: %s\n", run_filter); 125 fprintf(stderr, "No tests matched: %s\n", run_filter);
120 return 1; 126 return 1;
121 } 127 }
122 return 0; 128 return 0;
123 } 129 }
124 130
125 } // namespace dart 131 } // namespace dart
126 132
127 133
128 int main(int argc, const char** argv) { 134 int main(int argc, const char** argv) {
129 return dart::Main(argc, argv); 135 return dart::Main(argc, argv);
130 } 136 }
OLDNEW
« no previous file with comments | « runtime/bin/process.cc ('k') | runtime/bin/utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698