2024-06-20 00:34:32 +00:00
|
|
|
#include "../../include/all.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
int ret = EXIT_FAILURE;
|
|
|
|
|
2024-06-20 22:36:56 +00:00
|
|
|
if (argc != 2) {
|
2024-06-20 00:34:32 +00:00
|
|
|
printf("usage: %s <pool url>\n", argv[0]);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
lm_ctx_t ctx;
|
|
|
|
lm_ctx_init(&ctx);
|
|
|
|
|
|
|
|
ctx.debug = true;
|
|
|
|
|
2024-06-22 22:55:01 +00:00
|
|
|
if (!lm_ctx_pools_add(&ctx, "test", argv[1])) {
|
2024-06-20 00:34:32 +00:00
|
|
|
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2024-06-22 22:55:01 +00:00
|
|
|
lm_ctx_pools_test(&ctx);
|
2024-06-20 00:34:32 +00:00
|
|
|
ret = EXIT_SUCCESS;
|
|
|
|
|
|
|
|
end:
|
|
|
|
lm_ctx_free(&ctx);
|
|
|
|
return ret;
|
|
|
|
}
|