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

Unified Diff: test/mjsunit/es6/block-scoping.js

Issue 2654733004: [tests] Make assertOptimized()/assertUnoptimized() great again. (Closed)
Patch Set: Addressing comments Created 3 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
Index: test/mjsunit/es6/block-scoping.js
diff --git a/test/mjsunit/es6/block-scoping.js b/test/mjsunit/es6/block-scoping.js
index 0308edde96a37dd0ca0675196fb7d4501a550d2f..212352ee46d03c055cd2864612ac2363fc7ab9de 100644
--- a/test/mjsunit/es6/block-scoping.js
+++ b/test/mjsunit/es6/block-scoping.js
@@ -42,7 +42,7 @@ function f1() {
for (var j = 0; j < 5; ++j) f1();
%OptimizeFunctionOnNextCall(f1);
f1();
-assertTrue(%GetOptimizationStatus(f1) != 2);
+assertOptimized(f1);
// Dynamic lookup in and through block contexts.
function f2(one) {

Powered by Google App Engine
This is Rietveld 408576698