summaryrefslogtreecommitdiff
path: root/test cases/common/40 options
AgeCommit message (Collapse)Author
2025-05-15add test case for setting options from reconfigurePaolo Bonzini
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2025-02-27tests: add a DSL test for get_option with an unset b_ optionDylan Baker
2025-02-13Make all Meson level options overridable per subproject.Jussi Pakkanen
2023-09-13Fix assertion raised with invalid option nameCharles Brunet
When option name contains more that one dot, it should be detected earlier to prevent an assert to be raised. Fixes #11904.
2023-04-11fix various spelling issuesJosh Soref
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
2023-03-09re-deduplicate feature warnings printed at the end of setupEli Schwartz
In commit eaf365cb3ef4f1c2ba66e07237d86a44089aff4f we explicitly sorted them for neatness, with the rationale that we were restoring intentional behavior and we only need a set for stylistic purposes. This actually wasn't true, because we never sorted them to begin with (we did sort the version numbers), but sorting them is fine. The bigger issue is that we actually used a set to avoid printing the same feature type multiple times. Now we do print them multiple times -- because each registered feature includes the unique node. Fix this by using both sorted and a set. Fix tests that should in retrospect have flagged this as an issue, but were added later on in the same series to check something else entirely, happen to cover this too, and were presumably copied directly from stdout as-is...
2023-03-04typed_kwargs: Extend since_values and deprecated_values for typesXavier Claessens
2023-01-20Deprecate passing strings to non-string optionsDylan Baker
Currently Meson allow the following (Muon does not): ```meson option('foo', type : 'boolean', value : 'true') option('bar', type : 'integer', value : '42') ``` This is possibly a holdover from very old code, but it's a bad idea and we should stop doing it. This deprecation is the first stop on that journey.
2021-04-26Condense test directory names.Jussi Pakkanen