2024-03-31 10:39:34 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
root=$(dirname "${BASH_SOURCE[0]}")
|
|
|
|
|
|
|
|
|
|
source "$root/helpers.sh"
|
|
|
|
|
|
2025-03-24 19:48:32 +01:00
|
|
|
rc=0
|
|
|
|
|
|
|
|
|
|
run_script "$root/build-with-drm.sh" || rc=1
|
|
|
|
|
run_script "$root/test-version-matches-meson-and-changelog.sh" || rc=1
|
|
|
|
|
run_script "$root/test-uses-fb-backend-by-default.sh" || rc=1
|
|
|
|
|
run_script "$root/test-uses-fb-backend-if-selected-via-config.sh" || rc=1
|
|
|
|
|
run_script "$root/test-uses-drm-backend-if-selected-via-config-and-available.sh" || rc=1
|
|
|
|
|
|
|
|
|
|
exit $rc
|