meson-testing-installation — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited meson-testing-installation (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
meson test runs project tests, and meson install puts built artifacts into their final location. For pkg-config exports, release tarballs, and packaging layout, use meson-package-export-distribution.
Runnable examples live under this skill's examples/ directory.
Run all tests:
meson test -C buildList available tests:
meson test -C build --listRun specific test:
meson test -C build test_nameInstall project:
meson install -C buildDry-run (see what would be installed):
meson install -C build --dry-runTesting answers “does it work here?” Installation answers “does the project stage correctly?”
A healthy project should prove both.
meson test [options] [test_names...]| Option | Purpose |
|---|---|
-C BUILDDIR | Build directory |
--list | List available tests (don't run) |
-j JOBS | Parallel test jobs |
-v, --verbose | Verbose output |
--no-rebuild | Don't rebuild before testing |
--gdb | Run failing tests under gdb |
--benchmark | Run benchmark tests |
--suite SUITE | Run only one suite |
--print-errorlogs | Print failing test logs |
Use suites to keep test categories readable:
unitintegrationslowcompileinstallExample:
test('core', core_test, suite: 'unit')meson setup build --prefix=/opt/myapp
meson install -C buildmeson install -C build --destdir "$pkgdir"meson install -C build --destdir "$PWD/stage"install_headers()install_man()install_data()install_subdir()install_symlink()install_emptydir()install: true on the target that should ship~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.