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

Unified Diff: tests/corelib/big_integer_arith_vm_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (Closed)
Patch Set: Created 3 years, 9 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
Index: tests/corelib/big_integer_arith_vm_test.dart
diff --git a/tests/corelib/big_integer_arith_vm_test.dart b/tests/corelib/big_integer_arith_vm_test.dart
index a992b9440d5646c2c666e91f914bc44ee2e86f19..60c339a9e0339870c8879c6ff0e8ad2763cc5876 100644
--- a/tests/corelib/big_integer_arith_vm_test.dart
+++ b/tests/corelib/big_integer_arith_vm_test.dart
@@ -422,18 +422,18 @@ main() {
for (int i = 0; i < 10; i++) {
Expect.equals(1234567890123456789, foo());
Expect.equals(12345678901234567890, bar());
- testSmiOverflow(); // /// overflow: ok
- testBigintAdd(); // /// add: ok
- testBigintSub(); // /// sub: ok
- testBigintMul(); // /// mul: ok
- testBigintTruncDiv(); // /// trunDiv: ok
- testBigintDiv(); // /// div: ok
- testBigintModulo(); // /// mod: ok
- testBigintModPow(); // /// modPow: ok
- testBigintModInverse(); // /// modInv: ok
- testBigintGcd(); // /// gcd: ok
- testBigintNegate(); // /// negate: ok
- testShiftAmount(); // /// shift: ok
+ testSmiOverflow(); // //# overflow: ok
+ testBigintAdd(); // //# add: ok
+ testBigintSub(); // //# sub: ok
+ testBigintMul(); // //# mul: ok
+ testBigintTruncDiv(); // //# trunDiv: ok
+ testBigintDiv(); // //# div: ok
+ testBigintModulo(); // //# mod: ok
+ testBigintModPow(); // //# modPow: ok
+ testBigintModInverse(); // //# modInv: ok
+ testBigintGcd(); // //# gcd: ok
+ testBigintNegate(); // //# negate: ok
+ testShiftAmount(); // //# shift: ok
Expect.equals(12345678901234567890, (12345678901234567890).abs());
Expect.equals(12345678901234567890, (-12345678901234567890).abs());
var a = 10000000000000000000;
« no previous file with comments | « tests/compiler/dart2js_extra/variable_type_test.dart ('k') | tests/corelib/bool_from_environment2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698