apio
a99a0e5a54
All checks were successful
continuous-integration/drone/push Build is passing
Hooray!!
15 lines
218 B
C++
15 lines
218 B
C++
#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;
|
|
}
|