mirror of
https://github.com/OldUnreal/libxmp.git
synced 2026-04-02 21:37:43 -07:00
26 lines
438 B
C
26 lines
438 B
C
#include "test.h"
|
|
|
|
TEST(test_api_stop_module)
|
|
{
|
|
xmp_context ctx;
|
|
int ret;
|
|
int i;
|
|
|
|
ctx = xmp_create_context();
|
|
xmp_load_module(ctx, "data/ode2ptk.mod");
|
|
xmp_start_player(ctx, 8000, 0);
|
|
|
|
for (i = 0; i < 100; i++) {
|
|
ret = xmp_play_frame(ctx);
|
|
fail_unless(ret == 0, "play frame error");
|
|
}
|
|
|
|
xmp_stop_module(ctx);
|
|
|
|
ret = xmp_play_frame(ctx);
|
|
fail_unless(ret == -XMP_END, "module stop error");
|
|
|
|
xmp_free_context(ctx);
|
|
}
|
|
END_TEST
|