39 lines
777 B
C
39 lines
777 B
C
#include "../../include/all.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#define DATA_DIR "/tmp/data"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
int ret = EXIT_FAILURE;
|
|
|
|
if (argc != 2) {
|
|
printf("usage: %s <pool url>\n", argv[0]);
|
|
return ret;
|
|
}
|
|
|
|
lm_ctx_t ctx;
|
|
lm_ctx_init(&ctx);
|
|
|
|
if (!lm_ctx_set_data(&ctx, DATA_DIR)) {
|
|
printf("failed to set data dir: %s (%d)\n", lm_strerror(), lm_error());
|
|
goto end;
|
|
}
|
|
|
|
if (lm_ctx_pools_add(&ctx, "test", argv[1]) == NULL) {
|
|
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
|
|
goto end;
|
|
}
|
|
|
|
lm_ctx_pools_test(&ctx, NULL, NULL);
|
|
lm_ctx_pools_get_info(&ctx, true, NULL, NULL);
|
|
lm_ctx_pools_get_list(&ctx, true, NULL, NULL);
|
|
|
|
ret = EXIT_SUCCESS;
|
|
|
|
end:
|
|
lm_ctx_free(&ctx);
|
|
return ret;
|
|
}
|