Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

build-test - fix TestWrapper CS warnings #19180

Merged
merged 1 commit into from
Jul 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/runtest.proj
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ namespace $([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").
}
catch(Exception ex)
{
sErrorText = "Unable to read error file: " + errorFile%3B
sErrorText = $"Unable to read error file: {errorFile}\n{ex}"%3B
}

string outputText = null%3B
Expand All @@ -270,7 +270,7 @@ namespace $([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").
}
catch(Exception ex)
{
outputText = "Unable to read output file: " + outputFile%3B
outputText = $"Unable to read error file: {outputFile}\n{ex}"%3B
}

string msg = infraEx != null ? "Test Infrastructure Failure: " + infraEx.ToString()
Expand Down