libcruft-util/test/exe.cpp

16 lines
310 B
C++
Raw Normal View History

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
2016-10-10 16:23:07 +11:00
main (int, char**)
2016-05-13 15:23:05 +10:00
{
2016-10-10 16:23:07 +11:00
util::TAP::logger tap;
tap.expect_eq (util::image_path ().stem (), "exe", "identify executable path");
return tap.status ();
2016-05-13 15:23:05 +10:00
}