Chromium Code Reviews| Index: runtime/bin/run_vm_tests.cc |
| diff --git a/runtime/bin/run_vm_tests.cc b/runtime/bin/run_vm_tests.cc |
| index 8447a04c8307976d91724f7dc2bf8ee6473e3ef0..95ca04084e47143f076fabd2c884d37636edc768 100644 |
| --- a/runtime/bin/run_vm_tests.cc |
| +++ b/runtime/bin/run_vm_tests.cc |
| @@ -9,6 +9,7 @@ |
| #include "vm/benchmark_test.h" |
| #include "vm/dart.h" |
| #include "bin/dartutils.h" |
| +#include "bin/platform.h" |
| #include "vm/unit_test.h" |
|
zra
2015/11/03 22:55:12
Since we're here we may as well sort these, if pos
Cutch
2015/11/03 23:02:24
Done.
|
| @@ -133,5 +134,5 @@ static int Main(int argc, const char** argv) { |
| int main(int argc, const char** argv) { |
| - return dart::Main(argc, argv); |
| + dart::bin::Platform::Exit(dart::Main(argc, argv)); |
| } |