From bb0f50a9a92937540e13ae063abf4e7aec79237b Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 14 Feb 2016 20:14:10 +0000 Subject: Exclude debug operator<< from test coverage --- netfs/unittests/testCore.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netfs/unittests/testCore.cpp b/netfs/unittests/testCore.cpp index c3b925b..a35274c 100644 --- a/netfs/unittests/testCore.cpp +++ b/netfs/unittests/testCore.cpp @@ -16,10 +16,12 @@ operator==(const struct stat & a, const struct stat & b) } namespace std { + // LCOV_EXCL_START ostream & operator<<(ostream & s, const struct stat & ss) { return s << "dev: " << ss.st_dev << " inode: " << ss.st_ino; } + // LCOV_EXCL_STOP } class Core { -- cgit v1.2.3