Attention is currently required from: Edward O'Callaghan, Anastasia Klimchuk, Peter Marheine.
3 comments:
Commit Message:
Run `meson -Dtests=true` to enable tests. (default)
Run `meson -Dtests=false` to disable tests.
One last test scenario: does it work with no option mentioned in command line? just meson, or just m […]
I've updated the commit message. Now it should be mode clear what happen.
When you run `meson build` tests are enabled as before.
File meson.build:
Patch Set #1, Line 522: if cmocka_dep.found()
I remember that is an important thing, to check cmocka dep. […]
cmocka is now a required dependency for tests. Therefore the `if cmocka_dep.found()` is no longer needed. There are only two options: tests are enabled and cmocka is required and tests are disabled and cmocka is not required. We could soften this by using a feature option which has a tristate: `auto`, `enabled` and `disabled`.
TODO: Add `not_found_message` to cmocka dependency
File meson_options.txt:
Patch Set #1, Line 45: and run
I think tests will only be run via `meson test`, so this option only controls whether they're built […]
Done
To view, visit change 63832. To unsubscribe, or for help writing mail filters, visit settings.