1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:57:44 +00:00

Tests/LibWeb: Only care about *.html files in layout test runner

This commit is contained in:
Andreas Kling 2023-03-12 16:03:09 +01:00
parent 92eaad8f2e
commit 1b262f8c89

View file

@ -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}")