RESOLVED FIXED209690
Skip stress/test-out-of-memory.js on memory limited devices.
https://bugs.webkit.org/show_bug.cgi?id=209690
Summary Skip stress/test-out-of-memory.js on memory limited devices.
Mark Lam
Reported 2020-03-27 17:37:55 PDT
Attachments
proposed patch. (1.03 KB, patch)
2020-03-27 17:42 PDT, Mark Lam
keith_miller: review+
Mark Lam
Comment 1 2020-03-27 17:42:46 PDT
Created attachment 394773 [details] proposed patch.
Keith Miller
Comment 2 2020-03-27 17:45:09 PDT
Comment on attachment 394773 [details] proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=394773&action=review > JSTests/stress/test-out-of-memory.js:1 > +//@ skip if $memoryLimited or ["arm", "mips"].include?($architecture) I think $memoryLimited is a superset of "arm"/"mips"?
Mark Lam
Comment 3 2020-03-27 17:52:38 PDT
(In reply to Keith Miller from comment #2) > Comment on attachment 394773 [details] > proposed patch. > > View in context: > https://bugs.webkit.org/attachment.cgi?id=394773&action=review > > > JSTests/stress/test-out-of-memory.js:1 > > +//@ skip if $memoryLimited or ["arm", "mips"].include?($architecture) > > I think $memoryLimited is a superset of "arm"/"mips"? I think you're right, but I don't see code that confirms this for sure. This change is conservative. I would like to land it to green a bot, and I'll ping the arm/mips guys to remove the condition if it is indeed unnecessary.
Keith Miller
Comment 4 2020-03-27 17:53:33 PDT
Comment on attachment 394773 [details] proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=394773&action=review r=me. >>> JSTests/stress/test-out-of-memory.js:1 >>> +//@ skip if $memoryLimited or ["arm", "mips"].include?($architecture) >> >> I think $memoryLimited is a superset of "arm"/"mips"? > > I think you're right, but I don't see code that confirms this for sure. This change is conservative. I would like to land it to green a bot, and I'll ping the arm/mips guys to remove the condition if it is indeed unnecessary. sounds good. Can you make sure to ping them?
Mark Lam
Comment 5 2020-03-27 17:57:29 PDT
Caio Lima
Comment 6 2020-03-28 06:21:22 PDT
Comment on attachment 394773 [details] proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=394773&action=review >>>> JSTests/stress/test-out-of-memory.js:1 >>>> +//@ skip if $memoryLimited or ["arm", "mips"].include?($architecture) >>> >>> I think $memoryLimited is a superset of "arm"/"mips"? >> >> I think you're right, but I don't see code that confirms this for sure. This change is conservative. I would like to land it to green a bot, and I'll ping the arm/mips guys to remove the condition if it is indeed unnecessary. > > sounds good. Can you make sure to ping them? Just for the record, `$memoryLimited` and `$architecture == "arm" or "mips"`are note related each other. However, we use `--memory-limited` to run stress tests in all bots for ARMv7 and MIPS. Since it is defined in bots configuration, I'm afraid we won't find any relationship of them on WebKit tree. I think it is fine to have a mental model that `$memoryLimited is a superset of "arm"/"mips"` now, but It can change in the future.
Note You need to log in before you can comment on or make changes to this bug.