From b90cb610c1d274885b3ec61edfaef29846590b00 Mon Sep 17 00:00:00 2001 From: Jeremie Fraeys Date: Sat, 6 Dec 2025 13:41:12 -0500 Subject: [PATCH] Clean up test artifacts from project root - Move compiled test binaries to tests/binaries/ - Move profiling output files to tests/binaries/ - Add README.md for test binaries documentation - Project root now clean of test artifacts --- tests/binaries/README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tests/binaries/README.md diff --git a/tests/binaries/README.md b/tests/binaries/README.md new file mode 100644 index 0000000..90caf69 --- /dev/null +++ b/tests/binaries/README.md @@ -0,0 +1,30 @@ +# Test Binaries + +This directory contains compiled test binaries and output files used during development and testing. + +## Files + +- `integration.test` - Compiled Go integration test binary +- `load.test` - Compiled Go load test binary +- `cpu_ws.out` - WebSocket CPU profiling output +- `cpu_load.out` - CPU load test output + +## Usage + +These files are generated during test runs and can be used for: +- Running integration tests locally +- Performance profiling +- Debugging test failures + +## Cleanup + +These files can be safely deleted. They are excluded from git via `.gitignore`. + +To regenerate: +```bash +# Integration tests +go test -c ./tests/integration/ -o tests/binaries/integration.test + +# Load tests +go test -c ./tests/load/ -o tests/binaries/load.test +```