# Run Tests

> Build and run DuckDB extension tests. Supports running all tests or a specific test file.

- Skill: `ila/run-tests` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ila/run-tests`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ila/run-tests/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ila (https://skillmd.com/u/ila)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/ila/run-tests

---


## Instructions

1. Build if needed: `GEN=ninja make 2>&1 | tail -5`
2. Run all tests: `make test 2>&1`
   - Or a specific test: `build/release/test/unittest "test/sql/<test_name>.test" 2>&1`
3. Report: number of assertions passed/failed
4. If any fail, show the failing test name and expected vs actual values
5. If a test crashes (segfault, abort), investigate the crash — never skip or remove the test

