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

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

Issue 9114008: Introduce runtime/platform directory for code shared between vm (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Windows fixes. Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 6
7 #include "platform/globals.h"
8
7 #include "vm/assert.h" 9 #include "vm/assert.h"
8 #include "vm/globals.h"
9 #include "vm/unit_test.h" 10 #include "vm/unit_test.h"
10 11
11 12
12 // 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
13 // directory, or the top directory. 14 // directory, or the top directory.
14 static const char* GetFileName(const char* name) { 15 static const char* GetFileName(const char* name) {
15 if (File::Exists(name)) { 16 if (File::Exists(name)) {
16 return name; 17 return name;
17 } else { 18 } else {
18 static const int kRuntimeLength = strlen("runtime/"); 19 static const int kRuntimeLength = strlen("runtime/");
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 const char* kFilename = 52 const char* kFilename =
52 GetFileName("runtime/tests/vm/data/fixed_length_file"); 53 GetFileName("runtime/tests/vm/data/fixed_length_file");
53 File* file = File::Open(kFilename, File::kRead); 54 File* file = File::Open(kFilename, File::kRead);
54 EXPECT(file != NULL); 55 EXPECT(file != NULL);
55 EXPECT(file->ReadFully(buf, 12)); 56 EXPECT(file->ReadFully(buf, 12));
56 EXPECT_EQ(12, file->Position()); 57 EXPECT_EQ(12, file->Position());
57 EXPECT(file->ReadFully(buf, 6)); 58 EXPECT(file->ReadFully(buf, 6));
58 EXPECT_EQ(18, file->Position()); 59 EXPECT_EQ(18, file->Position());
59 delete file; 60 delete file;
60 } 61 }
OLDNEW
« no previous file with comments | « runtime/bin/fdutils.h ('k') | runtime/bin/gen_snapshot.cc » ('j') | runtime/platform/globals.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698