Commit 021f9853 authored by Orvid King's avatar Orvid King Committed by Facebook Github Bot

Lower the number of samples in tdigest_test

Summary: It's timing out in open source test runs because each individual test was taking 10 seconds. They each now take 2.

Reviewed By: yfeldblum

Differential Revision: D7841938

fbshipit-source-id: eb81c67cc26e98fb0b4b0c736bea747e985f2fcf
parent 06e7a0c4
......@@ -25,9 +25,9 @@ using namespace folly;
/*
* Tests run at a reasonable speed with these settings, but it is good to
* occasionally test with kNumRandomRuns = 3000.
* occasionally test with kNumRandomRuns = 3000 and kNumSamples = 50000
*/
const int32_t kNumSamples = 50000;
const int32_t kNumSamples = 10000;
const int32_t kNumRandomRuns = 30;
const int32_t kSeed = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment