blob: 9eb08fc4f88cd8a83b1a1d9655254f528395ca48 [file] [log] [blame]
// |jit-test| exitstatus: 6;
/* This test will loop infinitely if the shell watchdog
fails to kick in. */
timeout(0.1);
var start = new Date();
while (true) {
var end = new Date();
var duration = (end.getTime() - start.getTime()) / 1000;
if (duration > 1) {
print("tick");
start = new Date();
}
}