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

Unified Diff: runtime/vm/flow_graph_builder_test.cc

Issue 1585433002: Fix SourcePosition_IfElse test (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_builder_test.cc
diff --git a/runtime/vm/flow_graph_builder_test.cc b/runtime/vm/flow_graph_builder_test.cc
index c1e702c74a9acf76366dc2672e40c70a922c4a6e..4d747d6b960baebfcf98e6c6ac2f434ce5ee8743 100644
--- a/runtime/vm/flow_graph_builder_test.cc
+++ b/runtime/vm/flow_graph_builder_test.cc
@@ -560,9 +560,9 @@ TEST_CASE(SourcePosition_IfElse) {
spt.FuzzyInstructionMatchAt("LoadStaticField", 5, 12);
spt.FuzzyInstructionMatchAt("DebugStepCheck", 5, 5);
spt.FuzzyInstructionMatchAt("Return", 5, 5);
- spt.FuzzyInstructionMatchAt("LoadStaticField", 7, 10);
- spt.FuzzyInstructionMatchAt("DebugStepCheck", 7, 3);
- spt.FuzzyInstructionMatchAt("Return", 7, 3);
+ spt.FuzzyInstructionMatchAt("LoadStaticField", 7, 12);
+ spt.FuzzyInstructionMatchAt("DebugStepCheck", 7, 5);
+ spt.FuzzyInstructionMatchAt("Return", 7, 5);
}
} // namespace dart
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698