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
Copy file name to clipboardExpand all lines: cli/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ _Released 4/22/2025 (PENDING)_
9
9
10
10
**Misc:**
11
11
12
+
- Suppress benign warnings that reference OOM score of renderer. Addresses [#29563](https://github.com/cypress-io/cypress/issues/29563). Addressed in [#31521](https://github.com/cypress-io/cypress/pull/31521).
12
13
- The UI of the reporter and URL were updated to a darker gray background for better color contrast. Addressed in [#31475](https://github.com/cypress-io/cypress/pull/31475).
13
14
- Fixed an issue where the error message output when attempting to install Cypress on an unsupported architecture included an outdated documentation link to Cypress system requirements. Fixes [#31512](https://github.com/cypress-io/cypress/issues/31512).
Copy file name to clipboardExpand all lines: cli/test/lib/exec/spawn_spec.js
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -99,6 +99,8 @@ describe('lib/exec/spawn', function () {
99
99
[78887:1023/114920.074882:ERROR:debug_utils.cc(14)] Hit debug scenario: 4
100
100
101
101
[18489:0822/130231.159571:ERROR:gl_display.cc(497)] EGL Driver message (Error) eglQueryDeviceAttribEXT: Bad attribute.
102
+
103
+
[437:1212/125803.148706:ERROR:zygote_host_impl_linux.cc(273)] Failed to adjust OOM score of renderer with pid 610: Permission denied (13)
102
104
`
103
105
104
106
constlines=_
@@ -124,6 +126,10 @@ describe('lib/exec/spawn', function () {
124
126
it('returns true for GLX driver errors',()=>{
125
127
expect(spawn.isGarbageLineWarning('glx: failed to create drisw screen')).to.be.true
126
128
})
129
+
130
+
it('returns true for OOM score adjustment warnings',()=>{
131
+
expect(spawn.isGarbageLineWarning('[437:1212/125803.148706:ERROR:zygote_host_impl_linux.cc(273)] Failed to adjust OOM score of renderer with pid 610: Permission denied (13)')).to.be.true
0 commit comments