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

Side by Side Diff: tests/standalone/io/file_test.txt

Issue 2477903002: Adjust tests/standalone/io/file_test not to resolve relative to Platform.executable. (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « tests/standalone/io/file_test.dart ('k') | tests/standalone/standalone.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 namespace dart { 10 namespace dart {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 EXPECT(file != NULL); 54 EXPECT(file != NULL);
55 EXPECT(file->ReadFully(buf, 12)); 55 EXPECT(file->ReadFully(buf, 12));
56 EXPECT_EQ(12, file->Position()); 56 EXPECT_EQ(12, file->Position());
57 EXPECT(file->ReadFully(buf, 6)); 57 EXPECT(file->ReadFully(buf, 6));
58 EXPECT_EQ(18, file->Position()); 58 EXPECT_EQ(18, file->Position());
59 file->Release(); 59 file->Release();
60 } 60 }
61 61
62 } // namespace bin 62 } // namespace bin
63 } // namespace dart 63 } // namespace dart
OLDNEW
« no previous file with comments | « tests/standalone/io/file_test.dart ('k') | tests/standalone/standalone.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698