1
0
mirror of https://github.com/jborza/emu6502.git synced 2024-11-21 23:31:19 +00:00
This commit is contained in:
jborza 2019-04-14 14:15:19 +02:00
commit babb1fc507

View File

@ -22,12 +22,15 @@ steps:
restoreSolution: '$(solution)' restoreSolution: '$(solution)'
- task: VSBuild@1 - task: VSBuild@1
displayName: Build the C++ solution
inputs: inputs:
solution: '$(solution)' solution: '$(solution)'
platform: '$(buildPlatform)' platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)' configuration: '$(buildConfiguration)'
- task: VSTest@2 - task: BatchScript@1
name: test
displayName: Run test suite
inputs: inputs:
platform: '$(buildPlatform)' filename: '$(Build.SourcesDirectory)\Release\emu6502.exe'
configuration: '$(buildConfiguration)' failOnStandardError: true