aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanley.cheung@gmail.com>2015-07-25 20:25:34 -0700
committerGravatar Stanley Cheung <stanley.cheung@gmail.com>2015-07-25 20:25:34 -0700
commit5c575dd6e4b01cd68cca5d1917b58023dcf4ca0f (patch)
tree1f12ea1582e99c37de715dc9bbaeb76c0940b678 /tools
parent2a31304d7fc2aac2a1a05242c2a5d79fcd51faeb (diff)
parent9a5c4f516fedd13d2ccbf75745ec89d7b6d620df (diff)
Merge pull request #2664 from jtattermusch/async_tests
Cleanup in C# tests
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_csharp.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/run_tests/run_csharp.sh b/tools/run_tests/run_csharp.sh
index 752e83ef70..c0fedca193 100755
--- a/tools/run_tests/run_csharp.sh
+++ b/tools/run_tests/run_csharp.sh
@@ -32,6 +32,8 @@ set -ex
CONFIG=${CONFIG:-opt}
+NUNIT_CONSOLE="mono packages/NUnit.Runners.2.6.4/tools/nunit-console.exe"
+
if [ "$CONFIG" = "dbg" ]
then
MSBUILD_CONFIG="Debug"
@@ -46,6 +48,7 @@ root=`pwd`
cd src/csharp
export LD_LIBRARY_PATH=$root/libs/$CONFIG
-nunit-console -labels "$1/bin/$MSBUILD_CONFIG/$1.dll"
+
+$NUNIT_CONSOLE -labels "$1/bin/$MSBUILD_CONFIG/$1.dll"