| Index: visual_studio/NativeClientVSAddIn/test.bat
|
| diff --git a/visual_studio/NativeClientVSAddIn/test.bat b/visual_studio/NativeClientVSAddIn/test.bat
|
| index 0912d609408643781d7843185b732b7fb8afbd60..a6475b23fc5bf7e07714b63483414a81d78f4cb9 100644
|
| --- a/visual_studio/NativeClientVSAddIn/test.bat
|
| +++ b/visual_studio/NativeClientVSAddIn/test.bat
|
| @@ -1,20 +1,20 @@
|
| -@echo off
|
| -
|
| -:: Locations
|
| -set out_directory=..\..\out\vs_addin\Test
|
| -set mstest_file=Results.trx
|
| -set test_assembly=..\..\out\vs_addin\Debug\UnitTests.dll
|
| -
|
| -:: Set up the Visual Studio environment
|
| -call "%VS100COMNTOOLS%vsvars32.bat"
|
| -
|
| -:: Make the output directory and clean up existing mstest result file
|
| -mkdir %out_directory%
|
| -if exist %out_directory%\%mstest_file% del %out_directory%\%mstest_file%
|
| -
|
| -:: Run MSTest
|
| -mstest /testcontainer:%test_assembly% /testsettings:Local.testsettings /resultsfile:%out_directory%\%mstest_file%
|
| -
|
| -:: Parse the result with python script, return python's exit status
|
| -python check_test_results.py %out_directory%\%mstest_file%
|
| -exit /B %ERRORLEVEL%
|
| +@echo off
|
| +
|
| +:: Locations
|
| +set out_directory=..\..\out\vs_addin\Test
|
| +set mstest_file=Results.trx
|
| +set test_assembly=..\..\out\vs_addin\Debug\UnitTests.dll
|
| +
|
| +:: Set up the Visual Studio environment
|
| +call "%VS100COMNTOOLS%vsvars32.bat"
|
| +
|
| +:: Make the output directory and clean up existing mstest result file
|
| +mkdir %out_directory%
|
| +if exist %out_directory%\%mstest_file% del %out_directory%\%mstest_file%
|
| +
|
| +:: Run MSTest
|
| +mstest /testcontainer:%test_assembly% /testsettings:Local.testsettings /resultsfile:%out_directory%\%mstest_file%
|
| +
|
| +:: Parse the result with python script, return python's exit status
|
| +python check_test_results.py %out_directory%\%mstest_file%
|
| +exit /B %ERRORLEVEL%
|
|
|