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

Side by Side Diff: tests/standalone/float_array_test.dart

Issue 11275281: Update dart:io to convert strings between UTF8 and current code page (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 8 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 | Annotate | Revision Log
« no previous file with comments | « runtime/bin/utils_win.cc ('k') | tests/standalone/io/directory_non_ascii_sync_test.dart » ('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 // Dart test program for testing native float arrays. 5 // Dart test program for testing native float arrays.
6 6
7 // Library tag to be able to run in html test framework. 7 // Library tag to be able to run in html test framework.
8 #library("FloatArrayTest.dart"); 8 #library("FloatArrayTest.dart");
9 9
10 #import('dart:scalarlist'); 10 #import('dart:scalarlist');
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 testBadValues32(); 206 testBadValues32();
207 testBadValues64(); 207 testBadValues64();
208 // Check optimized (inlined) version of []= 208 // Check optimized (inlined) version of []=
209 Expect.throws(() { 209 Expect.throws(() {
210 storeIt32(a32, 1, 2); 210 storeIt32(a32, 1, 2);
211 }); 211 });
212 Expect.throws(() { 212 Expect.throws(() {
213 storeIt64(a64, 1, 2); 213 storeIt64(a64, 1, 2);
214 }); 214 });
215 } 215 }
OLDNEW
« no previous file with comments | « runtime/bin/utils_win.cc ('k') | tests/standalone/io/directory_non_ascii_sync_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698