Temporarily print regression TestCastAndConcatString() script compile errors out to console to get a handle on what's going wrong.

Does not fail for me locally and I failed to notice this test was failing on Jenkins.
This commit is contained in:
Justin Clark-Casey (justincc)
2014-05-27 18:19:08 +01:00
parent d131c57978
commit bcaacb4e41

View File

@@ -166,10 +166,11 @@ default
m_compilerResults = m_CSCodeProvider.CompileAssemblyFromSource(m_compilerParameters, output);
// foreach (CompilerError compErr in m_compilerResults.Errors)
// {
// System.Console.WriteLine("Error: {0}", compErr);
// }
System.Console.WriteLine("ERRORS: {0}", m_compilerResults.Errors.Count);
foreach (CompilerError compErr in m_compilerResults.Errors)
{
System.Console.WriteLine("Error: {0}", compErr);
}
Assert.AreEqual(0, m_compilerResults.Errors.Count);
}