From 971aacc603b439b7f793d27adcf707e472d43ea1 Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Thu, 19 Dec 2024 13:00:49 +0000 Subject: [PATCH] Meta: Don't suppress the output of the WPT importer script Previously, messages printed to stdout by `import-wpt-test.py` were being swallowed. --- Meta/WPT.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Meta/WPT.sh b/Meta/WPT.sh index b2226c14c58..886c5fc69de 100755 --- a/Meta/WPT.sh +++ b/Meta/WPT.sh @@ -249,7 +249,8 @@ import_wpt() set +e for path in "${TESTS[@]}"; do echo "Importing test from ${path}" - if [ ! "$(./Meta/import-wpt-test.py https://wpt.live/"${path}")" ]; then + + if ! ./Meta/import-wpt-test.py https://wpt.live/"${path}"; then continue fi "${HEADLESS_BROWSER_BINARY}" --run-tests ./Tests/LibWeb --rebaseline -f "$path"