Changeset 1567 for branches/0.10-stable/test/htmlstream.cc
- Timestamp:
- Feb 5, 2015, 9:00:33 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10-stable/test/htmlstream.cc
r1565 r1567 55 55 // check that we can use stream 'out' directly without and that the 56 56 // output is not HTMLized 57 out.clear();58 57 out << in; 59 if (out.str() != in) {58 if (out.str() != correct+in) { 60 59 suite.out() << "error incorrect behaviour of base stream: "; 61 suite.out() << " '" << in << " gives '" << out.str() << "'\n";62 suite.out() << "expected '" << in << "'\n";60 suite.out() << "output: '" << out.str() << "'; "; 61 suite.out() << "expected '" << correct+in << "'\n"; 63 62 suite.add(false); 64 63 }
Note: See TracChangeset
for help on using the changeset viewer.