11cb0ef41Sopenharmony_ci// Flags: --experimental-shadow-realm --max-old-space-size=20 21cb0ef41Sopenharmony_ci'use strict'; 31cb0ef41Sopenharmony_ci 41cb0ef41Sopenharmony_ci/** 51cb0ef41Sopenharmony_ci * Verifying ShadowRealm instances can be correctly garbage collected. 61cb0ef41Sopenharmony_ci */ 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_cirequire('../common'); 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_cifor (let i = 0; i < 1000; i++) { 111cb0ef41Sopenharmony_ci const realm = new ShadowRealm(); 121cb0ef41Sopenharmony_ci realm.evaluate('new TextEncoder(); 1;'); 131cb0ef41Sopenharmony_ci} 14