Skip to content

Commit e4955b2

Browse files
committed
Add output of nanoCLR execution to unit test
***NO_CI***
1 parent 51d98fb commit e4955b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MetadataProcessor.Tests/Core/ClrIntegrationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public async Task RunBCLTest()
243243
if (exitCode == 0)
244244
{
245245
// look for any error message
246-
Assert.IsFalse(output.Contains("Error:"), "Unexpected error message in output of NanoCLR");
246+
Assert.IsFalse(output.Contains("Error:"), $"Unexpected error message in output of NanoCLR.{Environment.NewLine}Output is:{Environment.NewLine}{output}");
247247

248248
// look for the error message reporting that there is no entry point
249249
Assert.IsTrue(output.Contains("Cannot find any entrypoint!"));

0 commit comments

Comments
 (0)