This repository has been archived on 2017-07-22. You can view files and clone it, but cannot push or open issues/pull-requests.
jlsampler/sound_test.c

19 lines
287 B
C

#include "jl_mem.h"
#include "jl_test.h"
#include "sound.h"
static void test_load()
{
load_config_file("test-files/test.ini");
load_samples(64);
free_samples();
dump_config();
}
int main(int argc, char **argv)
{
JL_LEAK_CHECK_INIT;
test_load();
return 0;
}