Meta: Make WPT.sh echo the “wpt run” invocation

To help people in troubleshooting problems when running the WPT.sh
script, this change makes the script echo to stdout the complete
“wpt run” invocation (including all the flags and path args).
This commit is contained in:
sideshowbarker 2024-10-25 12:17:54 +09:00 committed by Andreas Kling
parent 8fd59899fc
commit 6b82ab06fd
Notes: github-actions[bot] 2024-10-26 09:28:22 +00:00

View file

@ -153,6 +153,7 @@ execute_wpt() {
fi
WPT_ARGS+=( "--webdriver-arg=--certificate=${certificate_path}" )
done
echo QT_QPA_PLATFORM="offscreen" ./wpt run "${WPT_ARGS[@]}" ladybird "${TEST_LIST[@]}"
QT_QPA_PLATFORM="offscreen" ./wpt run "${WPT_ARGS[@]}" ladybird "${TEST_LIST[@]}"
popd > /dev/null
}