Meta: Don't suppress the output of the WPT importer script

Previously, messages printed to stdout by `import-wpt-test.py` were
being swallowed.
This commit is contained in:
Tim Ledbetter 2024-12-19 13:00:49 +00:00 committed by Tim Ledbetter
parent e049085f47
commit 971aacc603
Notes: github-actions[bot] 2024-12-29 01:36:21 +00:00

View file

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