Meta: Use QT_QPA_PLATFORM offscreen in WPT.sh

This has better compatibility with MacOS.
This commit is contained in:
Tim Ledbetter 2024-08-15 23:16:14 +01:00 committed by Andreas Kling
parent 961ad3c8e9
commit a859b3610d
Notes: github-actions[bot] 2024-08-17 05:44:25 +00:00

View file

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