skills/filament_desktop_testing/SKILL.md
This skill covers running tests and performance benchmarks on desktop platforms.
Run compiled unit test binaries directly from their respective build output directories.
./out/cmake-debug/libs/utils/test_utils
./out/cmake-debug/filament/test/test_filament
Use standard Google Test (gtest) command-line parameters to run a subset of tests:
./out/cmake-debug/filament/test/test_filament --gtest_filter=Suite.TestName
Run compiled performance benchmarks from the release build output directories.
./out/cmake-release/filament/benchmark/benchmark_filament
Use standard Google Benchmark parameters to filter specific benchmarks:
./out/cmake-release/filament/benchmark/benchmark_filament --benchmark_filter=lutGeneration