diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -16,6 +16,21 @@ make ``` This will compile the C launcher and embed it into the final `wg-wrap` binary. +**Testing the Project:** +The project uses a `Makefile` to orchestrate building and testing. +- **Standard Tests**: Run the unit and integration tests: + ```bash + make test + ``` +- **Security Fuzzing**: Run the 8-bit clean argument integrity fuzzer: + ```bash + make fuzz + ``` + You can adjust the fuzzer's parallelism and duration: + ```bash + FUZZ_PARALLEL=4 FUZZ_TIME=1h make fuzz + ``` + ## Profile Management To simplify usage, `wg-wrap` implements a profile system for managing WireGuard configurations. - **Storage**: Profiles are stored as standard `.conf` files in `~/.config/wg-wrap/profiles/`. |
