#include using namespace Upp; String RandomString(int n) { String h; while(n-- > 0) h.Cat((byte)Random()); return h; } CONSOLE_APP_MAIN { StringStream ss; String es; int time0 = msecs(); int i = 0; while(msecs(time0) < 150000) { if(++i % 10000 == 0) Cout() << i << "\r\n"; int p = Random(1000); String h = RandomString(p); ss.Put(h); es.Cat(h); if(Random(15) == 0) { h = ss.GetResult(); ASSERT(h == es); } if(Random(15) == 0) { ss.Create(); es.Clear(); } // LOGHEXDUMP(es, es.GetCount()); } LOG("========= OK"); }