Add memory pool test, fix bugs

This commit is contained in:
Rickey Fehr
2025-10-17 18:01:34 -07:00
parent 16059ab632
commit 138792df48
11 changed files with 171 additions and 25 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
set -eu
run_pool_test() {
cd pool
make clean
make
./build/pool_test
cd - > /dev/null
}
run_pool_test