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

Unified Diff: dart/tests/html/typed_arrays_simd_test.dart

Issue 59073003: Version 0.8.10.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart/tests/corelib/corelib.status ('k') | dart/tests/isolate/browser/typed_data_message_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/html/typed_arrays_simd_test.dart
===================================================================
--- dart/tests/html/typed_arrays_simd_test.dart (revision 29808)
+++ dart/tests/html/typed_arrays_simd_test.dart (working copy)
@@ -37,8 +37,8 @@
expect(val2.x, floatEquals(2.0));
expect(val2.y, floatEquals(4.0));
expect(val2.z, floatEquals(6.0));
- expect(val2.w, floatEquals(8.0));
- }
+ expect(val2.w, floatEquals(8.0));
+ }
});
test('test Float32x4List', () {
@@ -68,9 +68,9 @@
expect(counter.w, floatEquals(21.0));
});
- test('test Uint32x4', () {
+ test('test Int32x4', () {
if (Platform.supportsSimd) {
- final val = new Uint32x4(1, 2, 3, 4);
+ final val = new Int32x4(1, 2, 3, 4);
expect(val.x, equals(1));
expect(val.y, equals(2));
expect(val.z, equals(3));
@@ -79,7 +79,7 @@
expect(val2.x, equals(0));
expect(val2.y, equals(0));
expect(val2.z, equals(0));
- expect(val2.w, equals(0));
- }
+ expect(val2.w, equals(0));
+ }
});
}
« no previous file with comments | « dart/tests/corelib/corelib.status ('k') | dart/tests/isolate/browser/typed_data_message_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698