diff options
author | yang-g <yangg@google.com> | 2016-04-20 16:38:26 -0700 |
---|---|---|
committer | yang-g <yangg@google.com> | 2016-04-20 16:38:26 -0700 |
commit | e2914023068da2ded0f825cd1790b1c70f14e0a5 (patch) | |
tree | abbade79a6e2b15dbe3748129d80ab3c18b19b9d /test/cpp/qps/qps_interarrival_test.cc | |
parent | 25df28ef75ba99e5d16743be7310c2920ddd8a32 (diff) | |
parent | 2aec20120020741ee64fcd22042c2e56d4cf0a5b (diff) |
Merge remote-tracking branch 'upstream/master' into proto_comments
Diffstat (limited to 'test/cpp/qps/qps_interarrival_test.cc')
-rw-r--r-- | test/cpp/qps/qps_interarrival_test.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/cpp/qps/qps_interarrival_test.cc b/test/cpp/qps/qps_interarrival_test.cc index 48585af756..4055c8a718 100644 --- a/test/cpp/qps/qps_interarrival_test.cc +++ b/test/cpp/qps/qps_interarrival_test.cc @@ -63,14 +63,8 @@ static void RunTest(RandomDistInterface &&r, int threads, std::string title) { } using grpc::testing::ExpDist; -using grpc::testing::DetDist; -using grpc::testing::UniformDist; -using grpc::testing::ParetoDist; int main(int argc, char **argv) { RunTest(ExpDist(10.0), 5, std::string("Exponential(10)")); - RunTest(DetDist(5.0), 5, std::string("Det(5)")); - RunTest(UniformDist(0.0, 10.0), 5, std::string("Uniform(0,10)")); - RunTest(ParetoDist(1.0, 1.0), 5, std::string("Pareto(1,1)")); return 0; } |