Enabled tests on appveyor
assiduous
2 years ago
|
0 |
rem @echo off
|
|
1 |
|
|
2 |
if "%PLATFORM_NAME%"=="Windows" (
|
|
3 |
"%1\Tests\DiligentToolsTest\%CONFIGURATION%\DiligentToolsTest.exe" || set ERROR=1
|
|
4 |
)
|
|
5 |
|
|
6 |
exit /B %ERROR% REM use /B to exit the current batch script context, and not the command prompt process
|
51 | 51 |
class TIFFClientOpenWrapper
|
52 | 52 |
{
|
53 | 53 |
public:
|
54 | |
TIFFClientOpenWrapper(IDataBlob* pData) :
|
|
54 |
explicit TIFFClientOpenWrapper(IDataBlob* pData) noexcept :
|
55 | 55 |
m_Offset{0},
|
56 | 56 |
m_Size{pData->GetSize()},
|
57 | 57 |
m_pData{pData}
|
40 | 40 |
project: c:\projects\build\DiligentTools_Test.sln
|
41 | 41 |
verbosity: minimal
|
42 | 42 |
parallel: true
|
|
43 |
|
|
44 |
test_script:
|
|
45 |
- 'cd %APPVEYOR_BUILD_FOLDER%\Tests\DiligentToolsTest\assets'
|
|
46 |
- '%APPVEYOR_BUILD_FOLDER%\BuildTools\Scripts\appveyor\run_tests.bat %APPVEYOR_BUILD_FOLDER%\build'
|