| 14 | const char *model_path = getenv("DS4_TEST_MODEL"); |
| 15 | return (model_path && model_path[0]) ? model_path : "ds4flash.gguf"; |
| 16 | } |
| 17 | |
| 18 | static bool test_env_bool(const char *name) { |
| 19 | const char *v = getenv(name); |
| 20 | return v && v[0] && strcmp(v, "0") != 0; |
| 21 | } |
| 22 |
no outgoing calls
no test coverage detected