From 1cda0aba8293ddbba7948a97d7ce68de78d52ff8 Mon Sep 17 00:00:00 2001 From: Juraj Borza Date: Sun, 14 Apr 2019 13:29:54 +0200 Subject: [PATCH] Update azure-pipelines.yml for Azure Pipelines - run test --- azure-pipelines.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1b7daea..c31f742 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -22,12 +22,15 @@ steps: restoreSolution: '$(solution)' - task: VSBuild@1 + displayName: Build the C++ solution inputs: solution: '$(solution)' platform: '$(buildPlatform)' configuration: '$(buildConfiguration)' - -- task: VSTest@2 + +- task: BatchScript@1 + name: test + displayName: Run test suite inputs: - platform: '$(buildPlatform)' - configuration: '$(buildConfiguration)' + filename: '$(Build.SourcesDirectory)\Release\emu6502.exe' + failOnStandardError: true