libcruft-util/test/exe.cpp

16 lines
313 B
C++

#include "../tap.hpp"
#include "../exe.hpp"
///////////////////////////////////////////////////////////////////////////////
int
main (int, char **argv)
{
util::TAP::logger tap;
auto path = util::image_path ();
tap.expect_eq (path, argv[0], "identify executable path");
return tap.status ();
}