Luna/tests/test.cpp

15 lines
218 B
C++
Raw Normal View History

2023-04-23 19:52:28 +00:00
#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;
}