#include <stdio.h>
#include <test.h>

int main(int, char** argv)
{
    printf("%s\n", argv[0]);
    auto rc = test_main();
    if (rc.has_error())
    {
        perror("error");
        return 1;
    }
    return 0;
}