From 6b82ab06fdd86c10f43f625e94394bf84d18c6ac Mon Sep 17 00:00:00 2001 From: sideshowbarker Date: Fri, 25 Oct 2024 12:17:54 +0900 Subject: [PATCH] =?UTF-8?q?Meta:=20Make=20WPT.sh=20echo=20the=20=E2=80=9Cw?= =?UTF-8?q?pt=20run=E2=80=9D=20invocation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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). --- Meta/WPT.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Meta/WPT.sh b/Meta/WPT.sh index e079736937c..f6e1eaf08d1 100755 --- a/Meta/WPT.sh +++ b/Meta/WPT.sh @@ -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 }