+2017-08-02 Carlos Alberto Lopez Perez <clopez@igalia.com>
+
+ [Linux] JSTests/wasm/stress/oom.js should not run on Linux
+ https://bugs.webkit.org/show_bug.cgi?id=175100
+
+ Reviewed by Mark Lam.
+
+ The JSC test JSTests/wasm/stress/oom.js tries to use all the
+ available memory until an out of memory exception happens.
+
+ The Linux kernel is more tuned for server workloads than for GUI
+ responsiveness. When a process tries to use a lot of memory, Linux
+ will do its best to serve the request. This usually translates to
+ free physical RAM by writing to disk dirty pages and/or moving out
+ less recently used pages to swap (disk storage).
+ Meanwhile it does this, the system will become unresponsive and this
+ leads to freezes that can last even some minutes on the worst cases.
+
+ Therefore, let's skip this test on Linux as it will cause more harm
+ than good on the Linux bots or on the machines of Linux developers.
+
+ * wasm/stress/oom.js:
+
2017-08-01 Oleksandr Skachkov <gskachkov@gmail.com>
[JSC] Remove unnecessary print from stress\promise-finally.js test