diff options
author | Nicolas Lacasse <nlacasse@google.com> | 2020-09-03 10:52:01 -0700 |
---|---|---|
committer | Andrei Vagin <avagin@gmail.com> | 2020-09-09 17:53:10 -0700 |
commit | 786310a6c3ccd4fecea99a7f5196e8096eb6c006 (patch) | |
tree | a5279a1eac6d29a4afd96fe40abb96f531954f33 | |
parent | 7849589ef169e11d7270bf48e949dcd78f6f655c (diff) |
Run gentdents_benchmark with fewer files.
This test regularly times out when "shared" filesystem is enabled.
PiperOrigin-RevId: 329950622
-rw-r--r-- | test/perf/linux/getdents_benchmark.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/perf/linux/getdents_benchmark.cc b/test/perf/linux/getdents_benchmark.cc index d8e81fa8c..9030eb356 100644 --- a/test/perf/linux/getdents_benchmark.cc +++ b/test/perf/linux/getdents_benchmark.cc @@ -105,7 +105,7 @@ void BM_GetdentsSameFD(benchmark::State& state) { state.SetItemsProcessed(state.iterations()); } -BENCHMARK(BM_GetdentsSameFD)->Range(1, 1 << 16)->UseRealTime(); +BENCHMARK(BM_GetdentsSameFD)->Range(1, 1 << 12)->UseRealTime(); // Creates a directory containing `files` files, and reads all the directory // entries from the directory using a new FD each time. |