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

Unified Diff: src/shared/test_main.cc

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/shared/test_case.cc ('k') | src/shared/utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/test_main.cc
diff --git a/src/shared/test_main.cc b/src/shared/test_main.cc
index 36f8e62c2fb9d456d29b915532d74029f4979f5f..fb8b4698f37ddbb907599557b513bd1dfa218597 100644
--- a/src/shared/test_main.cc
+++ b/src/shared/test_main.cc
@@ -3,21 +3,21 @@
// BSD-style license that can be found in the LICENSE.md file.
#include "src/shared/flags.h"
-#include "src/shared/fletch.h"
+#include "src/shared/dartino.h"
#include "src/shared/test_case.h"
-namespace fletch {
+namespace dartino {
static void Main(int argc, char** argv) {
Flags::ExtractFromCommandLine(&argc, argv);
- Fletch::Setup();
+ Dartino::Setup();
TestCase::RunAll();
- Fletch::TearDown();
+ Dartino::TearDown();
}
-} // namespace fletch
+} // namespace dartino
int main(int argc, char** argv) {
- fletch::Main(argc, argv);
+ dartino::Main(argc, argv);
return 0;
}
« no previous file with comments | « src/shared/test_case.cc ('k') | src/shared/utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698