fix branch_canonicalization_test

Change-Id: Icd26e9edf3dbf513c614743a97c696ed88df00db
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/107570
Commit-Queue: Stephen Adams <sra@google.com>
Reviewed-by: Siva Annamalai <asiva@google.com>
This commit is contained in:
Stephen Adams 2019-07-02 06:15:02 +00:00 committed by commit-bot@chromium.org
parent a2e1434603
commit 822de210b5
3 changed files with 1 additions and 4 deletions

View file

@ -47,7 +47,7 @@ fooPoly(a, b) => barPoly(a, b) ? 1 : 0;
main() { main() {
final a = 1.0; final a = 1.0;
final b = 1 << 62; final b = 0x4000000000000000; // 1 << 62
final x = new A(), y = new B(), z = new C(); final x = new A(), y = new B(), z = new C();
for (var i = 0; i < 20; i++) { for (var i = 0; i < 20; i++) {
Expect.equals(1, fooDouble(a, a)); Expect.equals(1, fooDouble(a, a));

View file

@ -17,7 +17,6 @@ bit_operations_test: RuntimeError
bit_operations_test/03: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351 bit_operations_test/03: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
bit_operations_test/04: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351 bit_operations_test/04: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
bit_operations_test/none: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351 bit_operations_test/none: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
branch_canonicalization_test: RuntimeError
call_method_as_cast_test/06: RuntimeError call_method_as_cast_test/06: RuntimeError
call_method_implicit_tear_off_implements_function_test/05: RuntimeError call_method_implicit_tear_off_implements_function_test/05: RuntimeError
call_method_implicit_tear_off_implements_function_test/06: RuntimeError call_method_implicit_tear_off_implements_function_test/06: RuntimeError
@ -269,7 +268,6 @@ await_test: RuntimeError
bit_operations_test/03: RuntimeError bit_operations_test/03: RuntimeError
bit_operations_test/04: RuntimeError bit_operations_test/04: RuntimeError
bit_operations_test/none: RuntimeError bit_operations_test/none: RuntimeError
branch_canonicalization_test: RuntimeError
canonical_const2_test: RuntimeError, OK # non JS number semantics canonical_const2_test: RuntimeError, OK # non JS number semantics
checked_method_error_order_test: RuntimeError checked_method_error_order_test: RuntimeError
class_cycle_test/02: MissingCompileTimeError class_cycle_test/02: MissingCompileTimeError

View file

@ -298,7 +298,6 @@ bit_operations_test/02: MissingCompileTimeError
bit_operations_test/03: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351 bit_operations_test/03: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
bit_operations_test/04: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351 bit_operations_test/04: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
bit_operations_test/none: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351 bit_operations_test/none: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
branch_canonicalization_test: RuntimeError # Issue 29920; Expect.equals(expected: <0>, actual: <1>) fails.
built_in_identifier_prefix_test: CompileTimeError built_in_identifier_prefix_test: CompileTimeError
canonical_const2_test: RuntimeError # Ints and doubles are unified.; Expect.isFalse(true) fails. canonical_const2_test: RuntimeError # Ints and doubles are unified.; Expect.isFalse(true) fails.
closure_call_wrong_argument_count_negative_test: Fail closure_call_wrong_argument_count_negative_test: Fail