summaryrefslogtreecommitdiff
path: root/doc/HOWTO.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/HOWTO.md')
-rw-r--r--doc/HOWTO.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/HOWTO.md b/doc/HOWTO.md
index cafcf4a..bdc0214 100644
--- a/doc/HOWTO.md
+++ b/doc/HOWTO.md
@@ -62,10 +62,26 @@ Measures demo vs external library size. See `doc/SIZE_MEASUREMENT.md`.
## Testing
+### Run All Tests
```bash
cmake -B build -DDEMO_BUILD_TESTS=ON
cmake --build build -j4
cd build && ctest
+# OR: make run_all_tests
+```
+
+### Run Subsystem Tests
+```bash
+make run_audio_tests # Audio system tests
+make run_gpu_tests # GPU/shader tests
+make run_3d_tests # 3D rendering tests
+make run_assets_tests # Asset system tests
+make run_util_tests # Utility tests
+```
+
+### Run Specific Test
+```bash
+./build/test_synth
```
---