| 21 | int g_failed = 0; |
| 22 | |
| 23 | void report(const char* name, bool ok, const std::string& detail = {}) |
| 24 | { |
| 25 | std::printf("%s %-54s %s\n", |
| 26 | ok ? "[ OK ]" : "[FAIL]", |
| 27 | name, |
| 28 | detail.c_str()); |
| 29 | if (!ok) ++g_failed; |
| 30 | } |
| 31 | |
| 32 | std::vector<float> makeTone(double freq, int frames, float amplitude) |
| 33 | { |
no outgoing calls
no test coverage detected