diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2019-12-20 03:55:10 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2019-12-20 03:55:10 +0000 |
| commit | 50179b1b9b4fcf95c782bf2f69adc098a264ecee (patch) | |
| tree | ce805ff3e9a7e36bcf56fd9d1181b485e5bc513e /BuildTools/Scripts | |
| parent | appveyor.yml: fixed path to the tests (diff) | |
| download | DiligentCore-50179b1b9b4fcf95c782bf2f69adc098a264ecee.tar.gz DiligentCore-50179b1b9b4fcf95c782bf2f69adc098a264ecee.zip | |
Fixed run_tests.bat
Diffstat (limited to 'BuildTools/Scripts')
| -rw-r--r-- | BuildTools/Scripts/appveyor/run_tests.bat | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BuildTools/Scripts/appveyor/run_tests.bat b/BuildTools/Scripts/appveyor/run_tests.bat index 19390ed9..74b20da6 100644 --- a/BuildTools/Scripts/appveyor/run_tests.bat +++ b/BuildTools/Scripts/appveyor/run_tests.bat @@ -17,15 +17,15 @@ if "%PLATFORM_NAME%"=="Windows8.1" ( ) if "%RUN_API_CORE_TEST%"=="true" ( - "%1\UnitTests\DiligentCoreTest\%CONFIGURATION%\DiligentCoreTest.exe" || set ERROR=1 + "%1\Tests\DiligentCoreTest\%CONFIGURATION%\DiligentCoreTest.exe" || set ERROR=1 ) if "%RUN_CORE_API_D3D11_TEST%"=="true" ( - ("%1\UnitTests\DiligentCoreAPITest\%CONFIGURATION%\DiligentCoreAPITest.exe" --mode=d3d11_sw) || set /a ERROR=%ERROR%+10 + ("%1\Tests\DiligentCoreAPITest\%CONFIGURATION%\DiligentCoreAPITest.exe" --mode=d3d11_sw) || set /a ERROR=%ERROR%+10 ) if "%RUN_CORE_API_D3D12_TEST%"=="true" ( - ("%1\UnitTests\DiligentCoreAPITest\%CONFIGURATION%\DiligentCoreAPITest.exe" --mode=d3d12_sw) || set /a ERROR=%ERROR%+100 + ("%1\Tests\DiligentCoreAPITest\%CONFIGURATION%\DiligentCoreAPITest.exe" --mode=d3d12_sw) || set /a ERROR=%ERROR%+100 ) exit /B %ERROR% REM use /B to exit the current batch script context, and not the command prompt process |
