Skip to content
Snippets Groups Projects
Verified Commit 91079418 authored by Bryan R's avatar Bryan R
Browse files

Disable one cannot_allocate search

A workaround for ghc#23139, where T18623 was failing consistently with
this output.
parent ba5b8c58
No related branches found
No related tags found
No related merge requests found
Pipeline #64522 passed
......@@ -223,8 +223,9 @@ class GHCPerfWebhookServer(WebhookServer):
if grep(b'failed due to signal 9 .Killed'):
joblog('received signal 9')
failures.append('signal_9')
if (grep(b'Cannot allocate memory')
or grep(b'osCommitMemory: VirtualAlloc MEM_COMMIT failed')
if ( # Disabling this search due to ghc#23139
# grep(b'Cannot allocate memory')
grep(b'osCommitMemory: VirtualAlloc MEM_COMMIT failed')
or grep(b'out of memory allocating \d+ bytes')
):
joblog('could not allocate memory')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment