2016-05-13 15:23:05 +10:00
|
|
|
#include "./tap.hpp"
|
|
|
|
|
2016-10-10 16:23:07 +11:00
|
|
|
#include "./exe.hpp"
|
|
|
|
|
2016-05-13 15:23:05 +10:00
|
|
|
#include <iostream>
|
|
|
|
|
2016-10-10 16:23:07 +11:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2016-05-13 15:23:05 +10:00
|
|
|
int
|
2017-01-25 15:07:14 +11:00
|
|
|
main (int, char **argv)
|
2016-05-13 15:23:05 +10:00
|
|
|
{
|
2016-10-10 16:23:07 +11:00
|
|
|
util::TAP::logger tap;
|
2017-01-25 15:07:14 +11:00
|
|
|
|
|
|
|
auto path = util::image_path ();
|
|
|
|
tap.expect_eq (path, argv[0], "identify executable path");
|
2016-10-10 16:23:07 +11:00
|
|
|
return tap.status ();
|
2016-05-13 15:23:05 +10:00
|
|
|
}
|