projects
/
platform
/
upstream
/
coreclr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6227652
)
build-test - fix TestWrapper CS warnings (#19180)
author
Jacek Blaszczynski
<biosciencenow@outlook.com>
Sat, 28 Jul 2018 03:50:55 +0000
(
05:50
+0200)
committer
Aaron Robinson
<arobins@microsoft.com>
Sat, 28 Jul 2018 03:50:55 +0000
(20:50 -0700)
tests/runtest.proj
patch
|
blob
|
history
diff --git
a/tests/runtest.proj
b/tests/runtest.proj
index
b1a402c
..
f071bd7
100644
(file)
--- a/
tests/runtest.proj
+++ b/
tests/runtest.proj
@@
-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
@@
-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()