From 1b262f8c8997ba0b395266ecea1c200ebf1c1f68 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 12 Mar 2023 16:03:09 +0100 Subject: [PATCH] Tests/LibWeb: Only care about *.html files in layout test runner --- Tests/LibWeb/Layout/layout_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/LibWeb/Layout/layout_test.sh b/Tests/LibWeb/Layout/layout_test.sh index d75fc60c5b..e6dfa9cd27 100755 --- a/Tests/LibWeb/Layout/layout_test.sh +++ b/Tests/LibWeb/Layout/layout_test.sh @@ -16,7 +16,7 @@ else LADYBIRD_BINARY="./ladybird" fi -for input_html_path in "${SCRIPT_DIR}"/input/*; do +for input_html_path in "${SCRIPT_DIR}"/input/*.html; do input_html_file="$(basename "${input_html_path}" .html)" output_layout_dump=$(cd "${LADYBIRD_BUILD_DIR}"; "${LADYBIRD_BINARY}" -d "${input_html_path}")