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

Unified Diff: tests/language_2/bit_operations_test.dart

Issue 2990933002: Migrate block 43. (Closed)
Patch Set: Update tests and status file. Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/language_2/bind_test.dart ('k') | tests/language_2/bit_shift_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_2/bit_operations_test.dart
diff --git a/tests/language/bit_operations_test.dart b/tests/language_2/bit_operations_test.dart
similarity index 94%
rename from tests/language/bit_operations_test.dart
rename to tests/language_2/bit_operations_test.dart
index 3c2dc93415f60c02912fa6598b6ef405016904c0..91fd8420a867e159cbb0315d2985b5f9f91775e2 100644
--- a/tests/language/bit_operations_test.dart
+++ b/tests/language_2/bit_operations_test.dart
@@ -98,19 +98,19 @@ void testLeftShift64Bit() {
Expect.equals(0xffffffff, t << 0);
Expect.equals(0x1fffffffe, t << 1);
Expect.equals(0x7fffffff80000000, t << 31);
- Expect.equals(0x10000000000000000, 2*(t+1) << 31); //# 01: static type warning
- Expect.equals(0x20000000000000000, 4*(t+1) << 31); //# 02: static type warning
+ Expect.equals(0x10000000000000000, 2*(t+1) << 31); //# 01: compile-time error
+ Expect.equals(0x20000000000000000, 4*(t+1) << 31); //# 02: compile-time error
Expect.equals(0x8000000000000000, (t + 1) << 31);
}
void testLeftShift64BitWithOverflow1() {
var t = 0xffffffff;
- Expect.equals(0x10000000000000000, 2*(t+1) << 31); //# 03: static type warning
+ Expect.equals(0x10000000000000000, 2*(t+1) << 31); //# 03: compile-time error
}
void testLeftShift64BitWithOverflow2() {
var t = 0xffffffff;
- Expect.equals(0x20000000000000000, 4*(t+1) << 31); //# 04: static type warning
+ Expect.equals(0x20000000000000000, 4*(t+1) << 31); //# 04: compile-time error
}
void testLeftShift64BitWithOverflow3() {
« no previous file with comments | « tests/language_2/bind_test.dart ('k') | tests/language_2/bit_shift_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698