| Index: test/mjsunit/wasm/asm-wasm.js
 | 
| diff --git a/test/mjsunit/wasm/asm-wasm.js b/test/mjsunit/wasm/asm-wasm.js
 | 
| index a580c5c7e94a2f0ef804c6477857e9333aaa86f2..74014382ae24f58d45590f7dd0258184bb99cb78 100644
 | 
| --- a/test/mjsunit/wasm/asm-wasm.js
 | 
| +++ b/test/mjsunit/wasm/asm-wasm.js
 | 
| @@ -988,6 +988,7 @@ function TestFunctionTable(stdlib, foreign, buffer) {
 | 
|    return {caller:caller};
 | 
|  }
 | 
|  
 | 
| +print("TestFunctionTable...");
 | 
|  var module = TestFunctionTable(stdlib);
 | 
|  assertEquals(55, module.caller(0, 0, 33, 22));
 | 
|  assertEquals(11, module.caller(0, 1, 33, 22));
 | 
| @@ -1022,10 +1023,12 @@ function TestForeignFunctions() {
 | 
|      var val = initial_val;
 | 
|  
 | 
|      function getVal() {
 | 
| +      print("getVal");
 | 
|        return val;
 | 
|      }
 | 
|  
 | 
|      function setVal(new_val) {
 | 
| +      print("setVal: " + new_val);
 | 
|        val = new_val;
 | 
|      }
 | 
|  
 | 
| @@ -1040,6 +1043,7 @@ function TestForeignFunctions() {
 | 
|    assertEquals(103, module.caller(23, 103));
 | 
|  }
 | 
|  
 | 
| +print("TestForeignFunctions...");
 | 
|  TestForeignFunctions();
 | 
|  
 | 
|  
 | 
| 
 |