From 0fbe82466f7448497a7c8b8f56f53174d51c1649 Mon Sep 17 00:00:00 2001 From: Alexandre Courbot Date: Fri, 28 Oct 2022 11:50:08 +0900 Subject: [PATCH] tools/health-check: ignore more video file types for newline check We are going a add a couple of .vp9 and .ivf files, these are binary and do not need to end with a newline. BUG=b:214478588 TEST=./tools/health-check passes with crrev.com/c/3875043 Change-Id: Ic4e434616ed880dbff5dae76108e8d6692d80584 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3990145 Reviewed-by: Keiichi Watanabe Commit-Queue: Keiichi Watanabe Auto-Submit: Alexandre Courbot --- tools/health-check | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/health-check b/tools/health-check index f372e4b1ba..3ff08da18f 100755 --- a/tools/health-check +++ b/tools/health-check @@ -302,6 +302,8 @@ CHECKS: List[Check] = [ exclude=[ "**.h264", "**.vp8", + "**.vp9", + "**.ivf", "**.bin", "**.png", "**.min.js",