mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1107011: reduce number of iterations in jit-tests/ion/bug1107011-2.js; r=lth
This commit is contained in:
parent
83b9db1ec5
commit
070b84d9da
@ -8,5 +8,5 @@ function foo() {
|
||||
bar();
|
||||
}
|
||||
}
|
||||
for (var i=0; i<10000; i++)
|
||||
for (var i=0; i < 50; i++)
|
||||
foo();
|
||||
|
Loading…
Reference in New Issue
Block a user