mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
b1a558da0f
* Update location and name of cscope * Update README and add quick test script * Add architecture check and disable full test for now * Remove test script. Enable libpng integration test --------- Co-authored-by: Michael D Brown <michael.brown@trailofbits.com>
24 lines
455 B
Markdown
24 lines
455 B
Markdown
# Program Model
|
|
|
|
Indexes a program's source code to be queried by `seed-gen` and `patcher`.
|
|
|
|
## Dependencies
|
|
|
|
* [CodeQuery](https://ruben2020.github.io/codequery/)
|
|
* <https://github.com/trail-of-forks/buttercup-cscope>
|
|
* [Tree-sitter](https://tree-sitter.github.io/tree-sitter/)
|
|
|
|
## Quick Test
|
|
|
|
```shell
|
|
uv run pytest -svv
|
|
```
|
|
|
|
## Development
|
|
|
|
Before committing changes to this directory: reformat, lint, and ensure all tests pass.
|
|
|
|
```shell
|
|
make all
|
|
```
|