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

Unified Diff: test/mjsunit/regress/regress-1122.js

Issue 24792002: Thumb2 Backend: Enable Crankshaft to compile all Optimized Functions in Thumb2 mode Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 | « src/runtime.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-1122.js
diff --git a/test/mjsunit/regress/regress-1122.js b/test/mjsunit/regress/regress-1122.js
index 8f0bfb674b1d82304b8d8d0d92573e3032373c67..6d36ce2ebfea03384bc71ab9c31883b017bd16cf 100644
--- a/test/mjsunit/regress/regress-1122.js
+++ b/test/mjsunit/regress/regress-1122.js
@@ -55,12 +55,9 @@ assertEquals('prefix 3000 suffix',
function_with_n_params_and_m_args(6000, 8000));
assertEquals('prefix 5000 suffix',
function_with_n_params_and_m_args(10000, 8000));
-assertEquals('prefix 9000 suffix',
- function_with_n_params_and_m_args(18000, 18000));
-assertEquals('prefix 16000 suffix',
- function_with_n_params_and_m_args(32000, 32000));
-assertEquals('prefix undefined suffix',
- function_with_n_params_and_m_args(32000, 10000));
+assertThrows("function_with_n_params_and_m_args(18000, 18000)");
+assertThrows("function_with_n_params_and_m_args(32000, 32000)");
+assertThrows("function_with_n_params_and_m_args(32000, 10000)");
assertThrows("function_with_n_params_and_m_args(66000, 30000)");
assertThrows("function_with_n_params_and_m_args(30000, 66000)");
« no previous file with comments | « src/runtime.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698