Index: test/mjsunit/count-based-osr.js |
diff --git a/test/mjsunit/count-based-osr.js b/test/mjsunit/count-based-osr.js |
index fbff91e4a23f3ea02dc82c6f6dc7cca4876b5c4e..5ce4dc5cc4ba8fe1039e8d0c63f8640cf8c71c5c 100644 |
--- a/test/mjsunit/count-based-osr.js |
+++ b/test/mjsunit/count-based-osr.js |
@@ -26,14 +26,14 @@ |
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
// Flags: --count-based-interrupts --interrupt-budget=10 --weighted-back-edges |
-// Flags: --allow-natives-syntax --noparallel-recompilation |
+// Flags: --allow-natives-syntax |
// Test that OSR works properly when using count-based interrupting/profiling. |
function osr_this() { |
var a = 1; |
// Trigger OSR. |
- while (%GetOptimizationStatus(osr_this) == 2) {} |
+ while (%GetOptimizationStatus(osr_this, "no sync") == 2) {} |
return a; |
} |
assertEquals(1, osr_this()); |