diff options
Diffstat (limited to 'build.json')
-rw-r--r-- | build.json | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/build.json b/build.json index bdc167e546..b087031bfc 100644 --- a/build.json +++ b/build.json @@ -542,7 +542,8 @@ "test/cpp/util/echo.proto", "test/cpp/util/echo_duplicate.proto", "test/cpp/util/cli_call.cc", - "test/cpp/util/create_test_channel.cc" + "test/cpp/util/create_test_channel.cc", + "test/cpp/util/subprocess.cc" ] }, { @@ -1875,6 +1876,39 @@ ] }, { + "name": "crash_test", + "build": "test", + "language": "c++", + "src": [ + "test/cpp/end2end/crash_test.cc" + ], + "deps": [ + "grpc++_test_util", + "grpc_test_util", + "grpc++", + "grpc", + "gpr_test_util", + "gpr" + ] + }, + { + "name": "crash_test_server", + "build": "test", + "run": false, + "language": "c++", + "src": [ + "test/cpp/end2end/crash_test_server.cc" + ], + "deps": [ + "grpc++_test_util", + "grpc_test_util", + "grpc++", + "grpc", + "gpr_test_util", + "gpr" + ] + }, + { "name": "credentials_test", "build": "test", "language": "c++", |