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

Side by Side Diff: runtime/bin/file_test.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 "bin/file.h" 5 #include "bin/file.h"
6 #include "platform/assert.h" 6 #include "platform/assert.h"
7 #include "platform/globals.h" 7 #include "platform/globals.h"
8 #include "vm/unit_test.h" 8 #include "vm/unit_test.h"
9 9
10
11 namespace dart { 10 namespace dart {
12 namespace bin { 11 namespace bin {
13 12
14 // Helper method to be able to run the test from the runtime 13 // Helper method to be able to run the test from the runtime
15 // directory, or the top directory. 14 // directory, or the top directory.
16 static const char* GetFileName(const char* name) { 15 static const char* GetFileName(const char* name) {
17 if (File::Exists(name)) { 16 if (File::Exists(name)) {
18 return name; 17 return name;
19 } else { 18 } else {
20 static const int kRuntimeLength = strlen("runtime/"); 19 static const int kRuntimeLength = strlen("runtime/");
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 EXPECT(file != NULL); 54 EXPECT(file != NULL);
56 EXPECT(file->ReadFully(buf, 12)); 55 EXPECT(file->ReadFully(buf, 12));
57 EXPECT_EQ(12, file->Position()); 56 EXPECT_EQ(12, file->Position());
58 EXPECT(file->ReadFully(buf, 6)); 57 EXPECT(file->ReadFully(buf, 6));
59 EXPECT_EQ(18, file->Position()); 58 EXPECT_EQ(18, file->Position());
60 delete file; 59 delete file;
61 } 60 }
62 61
63 } // namespace bin 62 } // namespace bin
64 } // namespace dart 63 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698