diff options
| author | Michael Pratt <mpratt@google.com> | 2019-08-22 10:21:17 -0400 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-08-22 07:21:17 -0700 |
| commit | d003d6d021fcd38dfc3b578f1f179a76654bb709 (patch) | |
| tree | 26bf4c27fba05478557aec752578b6e688fcb177 /pkg | |
| parent | b231f4c2718029f641c0279d233e9cfedcf9a89f (diff) | |
Merge pull request #1338 from prattmic/patch-3
pkg/report: ignore exceeded race limits
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/report/gvisor.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/report/gvisor.go b/pkg/report/gvisor.go index dbee07bc3..958e98975 100644 --- a/pkg/report/gvisor.go +++ b/pkg/report/gvisor.go @@ -28,6 +28,7 @@ func ctorGvisor(cfg *config) (Reporter, []string, error) { "panic: executor failed: pthread_create failed", // PID exhaustion "panic: failed to start executor binary", "panic: error mapping run data: error mapping runData: cannot allocate memory", + "race: limit on 8128 simultaneously alive goroutines is exceeded, dying", "ERROR: ThreadSanitizer", // Go race failing due to OOM. "FATAL: ThreadSanitizer", } |
