| Index: test/cctest/compiler/test-run-bytecode-graph-builder.cc
|
| diff --git a/test/cctest/compiler/test-run-bytecode-graph-builder.cc b/test/cctest/compiler/test-run-bytecode-graph-builder.cc
|
| index d1ce501c52d3b23a472b66137332b5750a9fc168..b809e0cb43ae65452f9855f54f807be844a17fd3 100644
|
| --- a/test/cctest/compiler/test-run-bytecode-graph-builder.cc
|
| +++ b/test/cctest/compiler/test-run-bytecode-graph-builder.cc
|
| @@ -1462,11 +1462,10 @@ TEST(BytecodeGraphBuilderTryFinally1) {
|
| " try { a = 2; continue; } finally { a = 3; }"
|
| "} return a + i;",
|
| {handle(Smi::FromInt(23), isolate)}},
|
| - // TODO(mstarzinger): Investigate failure!
|
| - // {"var a = 1; try { a = 2;"
|
| - // " try { a = 3; throw 23; } finally { a = 4; }"
|
| - // "} catch(e) { a = a + e; } return a;",
|
| - // {handle(Smi::FromInt(27), isolate)}},
|
| + {"var a = 1; try { a = 2;"
|
| + " try { a = 3; throw 23; } finally { a = 4; }"
|
| + "} catch(e) { a = a + e; } return a;",
|
| + {handle(Smi::FromInt(27), isolate)}},
|
| };
|
|
|
| size_t num_snippets = sizeof(snippets) / sizeof(snippets[0]);
|
|
|