internal/rosa/meson: skip specific test suites

For disabling specific broken or flaky tests.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-06-22 00:53:17 +09:00
parent 14b445fde5
commit 1348991634
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -18,6 +18,8 @@ type MesonHelper struct {
// Flags passed to the setup command.
Setup []KV
// Test suites to skip.
SkipTests []string
// Whether to skip meson test.
SkipTest bool
// Run tests with interactive input/output.
@@ -61,6 +63,9 @@ meson test \
scriptTest += ` \
--interactive`
}
for _, suite := range attr.SkipTests {
scriptTest += " \\\n\t--no-suite='" + suite + "'"
}
}
return `