Support stream composition of testcase names

This commit is contained in:
Vinnie Falco
2014-07-15 13:46:37 -07:00
parent 7a92ac91d0
commit bb730c00e9
9 changed files with 482 additions and 244 deletions

View File

@@ -362,10 +362,14 @@ public:
{
typedef UnsignedInteger <Bytes> UInt;
#if 0
std::stringstream ss;
ss <<
c.name() << " <" << Bytes << ">";
testcase (ss.str());
#else
testcase << c.name() << " <" << Bytes << ">";
#endif
Random r;
for (int i = 0; i < 50; ++i)