You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following program runs for more than two minutes on my machine, even though I've set the timeout interval to two seconds. I'm using .NET Core 2.2 on macOS, but the same thing happens on Linux, too.
usingSystem;namespaceJint.Run{publicclassProgram{publicstaticvoidMain(string[]args){newEngine(SetOptions).Execute("new Date (1, Infinity);");}privatestaticvoidSetOptions(Optionsoptions){options.LimitRecursion(32).TimeoutInterval(TimeSpan.FromSeconds(2));}}}
The following program runs for more than two minutes on my machine, even though I've set the timeout interval to two seconds. I'm using .NET Core 2.2 on macOS, but the same thing happens on Linux, too.
Found via SharpFuzz.
The text was updated successfully, but these errors were encountered: