From ec58bb75291a7857e2d2cff3ce3279ae9f8d9ad1 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Tue, 12 Jan 2016 10:48:28 -0800 Subject: [PATCH] Add test args to dotnet-test-xunit --- KoreBuild-dotnet/build/_dotnet-test.shade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KoreBuild-dotnet/build/_dotnet-test.shade b/KoreBuild-dotnet/build/_dotnet-test.shade index 1f051523ff..53582f93cd 100644 --- a/KoreBuild-dotnet/build/_dotnet-test.shade +++ b/KoreBuild-dotnet/build/_dotnet-test.shade @@ -44,8 +44,8 @@ projectFile='' var runnerExe = Path.Combine(publishFolder, "dotnet-test-xunit.exe"); var targetTestDll = Path.Combine(publishFolder, projectName + ".dll"); - Exec(runnerExe, targetTestDll); + Exec(runnerExe, targetTestDll + " " + testArgs); } } } -} \ No newline at end of file +}