| 8049 | } |
| 8050 | |
| 8051 | StringRef randomString(Arena& arena, int len, char firstChar = 'a', char lastChar = 'z') { |
| 8052 | ++lastChar; |
| 8053 | StringRef s = makeString(len, arena); |
| 8054 | for (int i = 0; i < len; ++i) { |
| 8055 | *(uint8_t*)(s.begin() + i) = (uint8_t)deterministicRandom()->randomInt(firstChar, lastChar); |
| 8056 | } |
| 8057 | return s; |
| 8058 | } |
| 8059 | |
| 8060 | Standalone<StringRef> randomString(int len, char firstChar = 'a', char lastChar = 'z') { |
| 8061 | Standalone<StringRef> s; |
no test coverage detected