From b4cc9c572dd40742d281d6f881b5bbfc26eb39cc Mon Sep 17 00:00:00 2001 From: Jamie Liu Date: Fri, 28 Feb 2025 16:56:27 -0800 Subject: [PATCH] test/runner: ignore warnings about rlimits being lower than recommended PiperOrigin-RevId: 732302179 --- test/runner/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/runner/main.go b/test/runner/main.go index c3be49fca..613cdde7d 100644 --- a/test/runner/main.go +++ b/test/runner/main.go @@ -707,6 +707,9 @@ func isWarning(line string) bool { // gsys_get_timekeeping_params hasn't been implemented for ARM. case strings.Contains(line, "Error retrieving TSC snapshot, unable to save TSC: function not implemented"): + // Caused by properties of the host that runsc doesn't necessarily control. + case strings.Contains(line, "Host limit is lower than recommended"): + case *save: // Ignore these warnings for S/R tests as we try to delete the sandbox // after the sandbox has exited and before attempting to restore it.