libcruft-util/test/exe.cpp

16 lines
310 B
C++

#include "./tap.hpp"
#include "./exe.hpp"
#include <iostream>
///////////////////////////////////////////////////////////////////////////////
int
main (int, char**)
{
util::TAP::logger tap;
tap.expect_eq (util::image_path ().stem (), "exe", "identify executable path");
return tap.status ();
}