diff options
Diffstat (limited to 'deps/v8/test/mjsunit/debug-mirror-cache.js')
-rw-r--r-- | deps/v8/test/mjsunit/debug-mirror-cache.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/deps/v8/test/mjsunit/debug-mirror-cache.js b/deps/v8/test/mjsunit/debug-mirror-cache.js index 07aaf880d..c690aa013 100644 --- a/deps/v8/test/mjsunit/debug-mirror-cache.js +++ b/deps/v8/test/mjsunit/debug-mirror-cache.js @@ -62,6 +62,9 @@ function listener(event, exec_state, event_data, data) { json = '{"seq":0,"type":"request","command":"backtrace"}' dcp.processDebugJSONRequest(json); + // Make sure looking up loaded scripts does not clear the cache. + Debug.scripts(); + // Some mirrors where cached. assertFalse(debug.next_handle_ == 0, "Mirror cache not used"); assertFalse(debug.mirror_cache_.length == 0, "Mirror cache not used"); |