From 67de71d3024250f488b21ccfb363ec78dff44ac9 Mon Sep 17 00:00:00 2001 From: Aliaksandr Kalenik Date: Wed, 14 Jun 2023 20:53:32 +0300 Subject: [PATCH] Tests/LibWeb: Do not fail WPT tests on unexpected results Since both the WebDriver and Browser API are currently unstable during WPT tests, it's a good idea to make sure that WPT passes even if there are unexpected results. This will help avoid having failures marked as red in the CI system caused by flaky WPT tests. --- Tests/LibWeb/WPT/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/LibWeb/WPT/run.sh b/Tests/LibWeb/WPT/run.sh index 1145cc0c3b..b78be23f2c 100755 --- a/Tests/LibWeb/WPT/run.sh +++ b/Tests/LibWeb/WPT/run.sh @@ -32,4 +32,4 @@ git clone --depth 10000 https://github.com/web-platform-tests/wpt.git ./concat-extract-metadata.py --extract metadata.txt metadata # Run tests. -./wpt/wpt run ladybird --include-manifest include.ini --metadata ./metadata --manifest ./MANIFEST.json +./wpt/wpt run ladybird --no-fail-on-unexpected --no-fail-on-unexpected-pass --skip-timeout --include-manifest include.ini --metadata ./metadata --manifest ./MANIFEST.json --log-raw "${wpt_run_log_filename}"