mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 04:57:45 +00:00
Ladybird+Meta: Add ctest to run WPT in the Integration configuration
By running ctest -C Integration -R WPT, you can run WPT. Adding just -C Integration will run all other tests *and* the WPT test. Also add support for ./Meta/serenity.sh test lagom WPT to serenity.sh
This commit is contained in:
parent
8e605fb0f9
commit
99499a6fae
2 changed files with 16 additions and 5 deletions
|
@ -256,12 +256,14 @@ ensure_target() {
|
|||
|
||||
run_tests() {
|
||||
local TEST_NAME="$1"
|
||||
export CTEST_OUTPUT_ON_FAILURE=1
|
||||
local CTEST_ARGS=("--output-on-failure" "--test-dir" "$BUILD_DIR")
|
||||
if [ -n "$TEST_NAME" ]; then
|
||||
( cd "$BUILD_DIR" && ctest -R "$TEST_NAME" )
|
||||
else
|
||||
( cd "$BUILD_DIR" && ctest )
|
||||
if [ "$TEST_NAME" = "WPT" ]; then
|
||||
CTEST_ARGS+=("-C" "Integration")
|
||||
fi
|
||||
CTEST_ARGS+=("-R" "$TEST_NAME")
|
||||
fi
|
||||
ctest "${CTEST_ARGS[@]}"
|
||||
}
|
||||
|
||||
build_target() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue