mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
355 B
17 lines
355 B
10 years ago
|
@rem Runs C# tests for given assembly from command line. The Grpc.sln solution needs to be built before running the tests.
|
||
|
|
||
|
setlocal
|
||
|
|
||
|
@rem enter this directory
|
||
|
cd /d %~dp0\..\..\src\csharp
|
||
|
|
||
|
packages\NUnit.Runners.2.6.4\tools\nunit-console-x86.exe -labels "%1/bin/Debug/%1.dll" || goto :error
|
||
|
|
||
|
endlocal
|
||
|
|
||
|
goto :EOF
|
||
|
|
||
|
:error
|
||
|
echo Failed!
|
||
|
exit /b %errorlevel%
|