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

Unified Diff: test/mjsunit/regress/regress-crbug-145961.js

Issue 10913062: Fixed test expectation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 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: test/mjsunit/regress/regress-crbug-145961.js
diff --git a/test/mjsunit/regress/regress-crbug-145961.js b/test/mjsunit/regress/regress-crbug-145961.js
index b05cf11cc3c93d8de3631ea5e024886a1d5873ec..eb88945e0f9cd814b26787e31ccf5e065acbbf58 100644
--- a/test/mjsunit/regress/regress-crbug-145961.js
+++ b/test/mjsunit/regress/regress-crbug-145961.js
@@ -33,7 +33,7 @@ function test() {
return Math.min(x, x);
}
-assertEquals(-1, test());
-assertEquals(-1, test());
+assertEquals(0, test());
+assertEquals(0, test());
%OptimizeFunctionOnNextCall(test);
-assertEquals(-1, test());
+assertEquals(0, test());
« 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