mirror of https://github.com/mackron/miniaudio.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
302 B
C
14 lines
302 B
C
#define MA_NO_DEVICE_IO
|
|
#include "../common/common.c"
|
|
|
|
#include "generation_noise.c"
|
|
#include "generation_waveform.c"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
ma_register_test("Noise", test_entry__noise);
|
|
ma_register_test("Waveform", test_entry__waveform);
|
|
|
|
return ma_run_tests(argc, argv);
|
|
}
|