Skip to content
Snippets Groups Projects

New batch of failures

Merged Bryan R requested to merge wip/b/new-fail-batch into master
2 files
+ 21
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -224,9 +224,27 @@ class GHCPerfWebhookServer(WebhookServer):
if grep(b'ghc-pkg dump failed: dieVerbatim: user error'):
joblog('ghc-pkg or hadrian failure')
failures.append('ghc-pkg_died')
if grep(b'cannot link \'/nix/store/.tmp-link'):
if (grep(b'cannot link \'/nix/store/.tmp-link')
or grep(b'error: clearing flags of path \'/nix/store')
):
joblog('Nix#7273 failure')
failures.append('nix_T7273')
if grep(b'Segmentation fault.*CABAL.*new-exec.*hadrian'):
joblog('"cabal exec hadrian" segfault')
failures.append('cabal_hadrian_segfault')
if grep(b'Command failed with error code: -6'):
joblog('error code: -6')
failures.append('code_-6')
if (hasattr(job, 'failure_reason')
and job.failure_reason == 'job_execution_timeout'):
joblog('job timeout')
failures.append('job_timeout')
if grep(b'ERROR: Job failed \(system failure\): aborted: terminated'):
joblog('runner terminated')
failures.append('runner_process_terminated')
if grep(b'posix_spawnp: resource busy'):
joblog('ghc-config file conflict')
failures.append('ghc-config_file_conflict')
## ... others to be added...
# Record our failures
Loading