aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/util/subprocess.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-03-03 12:51:53 -0800
committerGravatar Craig Tiller <ctiller@google.com>2016-04-06 10:14:44 -0700
commit0bda0b3e558dd1b88455a8d5656cb9f739ca331a (patch)
tree4077d2275d773be0947913c4755e0ac5cf3f3aeb /test/cpp/util/subprocess.h
parent39a96967f1b003391b02317bf7c6fb003edc4722 (diff)
Configure performance scenarios with json
Run those json configurations as part of presubmits
Diffstat (limited to 'test/cpp/util/subprocess.h')
-rw-r--r--test/cpp/util/subprocess.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/cpp/util/subprocess.h b/test/cpp/util/subprocess.h
index 8fafe3d177..f7b553ae03 100644
--- a/test/cpp/util/subprocess.h
+++ b/test/cpp/util/subprocess.h
@@ -36,6 +36,7 @@
#include <initializer_list>
#include <string>
+#include <vector>
struct gpr_subprocess;
@@ -43,7 +44,7 @@ namespace grpc {
class SubProcess {
public:
- SubProcess(std::initializer_list<std::string> args);
+ SubProcess(const std::vector<std::string>& args);
~SubProcess();
int Join();