Changeset 928 for trunk/src/lol/unit.h
- Timestamp:
- Sep 8, 2011, 7:12:16 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lol/unit.h
r927 r928 108 108 m_currentname = c->m_testname; 109 109 m_context.str(""); 110 111 std::cout << '.'; 110 112 (static_cast<FixtureClass *>(this)->*c->m_fun)(); 111 std::cout << (m_failure ? 'F' : '.');113 if (m_failure) std::cout << 'F'; 112 114 } 113 115 } … … 253 255 m_errorlog << "- Expected: " << #a << " = " << (a) << std::endl; \ 254 256 m_errorlog << "- Actual : " << #b << " = " << (b) << std::endl; \ 255 m_errorlog << "- Delta : " << #t << " = " <<(t) << std::endl; \257 m_errorlog << "- Delta : " << (t) << std::endl; \ 256 258 m_errorlog << std::setprecision(old_prec); \ 257 259 m_errorlog << message; \
Note: See TracChangeset
for help on using the changeset viewer.