/* -*- C++ -*- (c) 2008 Petr Rockai (c) 2008 Enrico Zini */ #include #include #include #include #include namespace { using namespace std; using namespace wibble; using namespace wibble::stream; struct TestStreamPosix { Test basicMatch() { #ifdef POSIX // no /dev/null otherwise int fd = open("/dev/null", O_WRONLY); assert(fd != -1); PosixBuf buf(fd); ostream os(&buf); os << "Foo"; os << "Bar"; os << endl; #endif } }; } // vim:set ts=4 sw=4: