aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-10-28 10:02:04 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-10-28 10:02:04 -0700
commita09edad02ab9f9974565b267f2d28507bed1e6e4 (patch)
tree42f154171ea8f614d4bc1e91eb9ac164136ac5dd /tools/run_tests
parentbdf4b2e5daf19ff3be3c02c75469c1907a0cdbb8 (diff)
run all the tests for C# extension coverage
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-xtools/run_tests/run_csharp.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/run_tests/run_csharp.sh b/tools/run_tests/run_csharp.sh
index 72c0e4e90a..37e86feaad 100755
--- a/tools/run_tests/run_csharp.sh
+++ b/tools/run_tests/run_csharp.sh
@@ -49,7 +49,11 @@ export LD_LIBRARY_PATH=$root/libs/$CONFIG
if [ "$CONFIG" = "gcov" ]
then
- (cd src/csharp; $NUNIT_CONSOLE -labels "Grpc.Core.Tests/bin/$MSBUILD_CONFIG/Grpc.Core.Tests.dll")
+ (cd src/csharp; $NUNIT_CONSOLE -labels \
+ "Grpc.Core.Tests/bin/$MSBUILD_CONFIG/Grpc.Core.Tests.dll" \
+ "Grpc.Examples.Tests/bin/$MSBUILD_CONFIG/Grpc.Examples.Tests.dll" \
+ "Grpc.HealthCheck.Tests/bin/$MSBUILD_CONFIG/Grpc.HealthCheck.Tests.dll" \
+ "Grpc.IntegrationTesting/bin/$MSBUILD_CONFIG/Grpc.IntegrationTesting.dll")
gcov objs/gcov/src/csharp/ext/*.o
lcov --base-directory . --directory . -c -o coverage.info