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:
parent
e049085f47
commit
971aacc603
Notes:
github-actions[bot]
2024-12-29 01:36:21 +00:00
Author: https://github.com/tcl3 Commit: https://github.com/LadybirdBrowser/ladybird/commit/971aacc603b Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2977 Reviewed-by: https://github.com/gmta
1 changed files with 2 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue