Skip to content

Commit 8ce6d7f

Browse files
committed
Generators everywhere, polish output
1 parent f9f0ae7 commit 8ce6d7f

File tree

4 files changed

+262
-193
lines changed

4 files changed

+262
-193
lines changed

libcxx/test/benchmarks/GenerateInput.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ template <>
195195
struct Generate<std::string> {
196196
static std::string arbitrary() { return "hello world"; }
197197
static std::string cheap() { return "small"; }
198-
static std::string expensive() { return "large stringggggggggggggggggggggggggggggggggggggggggggggggggggg"; }
198+
static std::string expensive() { return std::string(256, 'x'); }
199199
};
200200

201201
#endif // BENCHMARK_GENERATE_INPUT_H

0 commit comments

Comments
 (0)