diff --git a/CMakeLists.txt b/CMakeLists.txt index b2a32755..01c3b03c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -558,6 +558,7 @@ if (TESTS) hash/siphash hash/xxhash hton + io introspection iterator job/queue diff --git a/test/io.cpp b/test/io.cpp new file mode 100644 index 00000000..df30c129 --- /dev/null +++ b/test/io.cpp @@ -0,0 +1,13 @@ +#include "tap.hpp" + +#include "io.hpp" +#include "types/traits.hpp" + + +/////////////////////////////////////////////////////////////////////////////// +int main () +{ + cruft::TAP::logger tap; + tap.expect (is_container_v, "mapped_file is a container"); + return tap.status (); +}