Upgrade V8 to version 4.9.385.28
https://chromium.googlesource.com/v8/v8/+/4.9.385.28
FPIIM-449
Change-Id: I4b2e74289d4bf3667f2f3dc8aa2e541f63e26eb4
diff --git a/test/mjsunit/debug-stepin-property-function-call.js b/test/mjsunit/debug-stepin-property-function-call.js
index 081fb24..dff83c7 100644
--- a/test/mjsunit/debug-stepin-property-function-call.js
+++ b/test/mjsunit/debug-stepin-property-function-call.js
@@ -38,13 +38,13 @@
function listener(event, exec_state, event_data, data) {
try {
if (event == Debug.DebugEvent.Break) {
- if (state == 1) {
- exec_state.prepareStep(Debug.StepAction.StepIn, 3);
- state = 2;
- } else if (state == 2) {
+ if (state < 4) {
+ exec_state.prepareStep(Debug.StepAction.StepIn);
+ state++;
+ } else {
assertTrue(event_data.sourceLineText().indexOf("Expected to step") > 0,
"source line: \"" + event_data.sourceLineText() + "\"");
- state = 3;
+ state = 5;
}
}
} catch(e) {
@@ -143,7 +143,7 @@
this[n]();
++functionsCalled;
assertNull(exception, n);
- assertEquals(3, state, n);
+ assertEquals(5, state, n);
assertEquals(functionsCalled, count, n);
}