tinygrad/extra/hcqfuzz
2025-11-13 08:52:27 -08:00
..
tests remove FUSE_ARANGE (#12511) 2025-10-08 04:54:07 -04:00
.gitignore hcqfuzz: init (#10049) 2025-04-25 23:19:21 +03:00
fuzzer.py hcqfuzz: init (#10049) 2025-04-25 23:19:21 +03:00
readme Fix/hcqfuzz harnesss bug (#10923) 2025-06-23 11:22:30 +03:00
spec.py hcqfuzz: init (#10049) 2025-04-25 23:19:21 +03:00
tools.py feat: add repro command to summary (#10930) 2025-11-13 08:52:27 -08:00

# Fuzzing Infra

To add a new test, define a `TestSpec`-based class in a file in the `tests/` folder.

You can choose which tests to load from which file:
```bash
PYTHONPATH=. RUN_FILES="hcq,allocator" python3 extra/hcqfuzz/fuzzer.py
```
Or skip tests from any file:
```bash
PYTHONPATH=. SKIP_FILES="allocator" python3 extra/hcqfuzz/fuzzer.py
```