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

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

Issue 1800863002: Cleanup in //runtime/bin (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Windows fixes Created 4 years, 9 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
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/dartutils.h"
7 #include "bin/file.h" 8 #include "bin/file.h"
8 #include "bin/dartutils.h"
9 #include "bin/platform.h" 9 #include "bin/platform.h"
10 10
11 #include "vm/benchmark_test.h" 11 #include "vm/benchmark_test.h"
12 #include "vm/dart.h" 12 #include "vm/dart.h"
13 #include "vm/unit_test.h" 13 #include "vm/unit_test.h"
14 14
15 15
16 // TODO(iposva, asiva): This is a placeholder for the real unittest framework. 16 // TODO(iposva, asiva): This is a placeholder for the real unittest framework.
17 namespace dart { 17 namespace dart {
18 18
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 } 137 }
138 return 0; 138 return 0;
139 } 139 }
140 140
141 } // namespace dart 141 } // namespace dart
142 142
143 143
144 int main(int argc, const char** argv) { 144 int main(int argc, const char** argv) {
145 return dart::Main(argc, argv); 145 return dart::Main(argc, argv);
146 } 146 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698