diff options
author | Justin Clark-Casey (justincc) | 2014-05-27 18:19:08 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-05-27 18:19:08 +0100 |
commit | bcaacb4e41f10f4ebadc25d4aef98d60fe970770 (patch) | |
tree | f6be6577e0bf2b79d1b8c5ed5b8acf6427332ba9 | |
parent | Update regression TestInventoryDescendentsFetch() to account for recent commi... (diff) | |
download | opensim-SC_OLD-bcaacb4e41f10f4ebadc25d4aef98d60fe970770.zip opensim-SC_OLD-bcaacb4e41f10f4ebadc25d4aef98d60fe970770.tar.gz opensim-SC_OLD-bcaacb4e41f10f4ebadc25d4aef98d60fe970770.tar.bz2 opensim-SC_OLD-bcaacb4e41f10f4ebadc25d4aef98d60fe970770.tar.xz |
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.
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/CompilerTest.cs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/CompilerTest.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/CompilerTest.cs index badf82a..3647467 100644 --- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/CompilerTest.cs +++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/CompilerTest.cs | |||
@@ -166,10 +166,11 @@ default | |||
166 | 166 | ||
167 | m_compilerResults = m_CSCodeProvider.CompileAssemblyFromSource(m_compilerParameters, output); | 167 | m_compilerResults = m_CSCodeProvider.CompileAssemblyFromSource(m_compilerParameters, output); |
168 | 168 | ||
169 | // foreach (CompilerError compErr in m_compilerResults.Errors) | 169 | System.Console.WriteLine("ERRORS: {0}", m_compilerResults.Errors.Count); |
170 | // { | 170 | foreach (CompilerError compErr in m_compilerResults.Errors) |
171 | // System.Console.WriteLine("Error: {0}", compErr); | 171 | { |
172 | // } | 172 | System.Console.WriteLine("Error: {0}", compErr); |
173 | } | ||
173 | 174 | ||
174 | Assert.AreEqual(0, m_compilerResults.Errors.Count); | 175 | Assert.AreEqual(0, m_compilerResults.Errors.Count); |
175 | } | 176 | } |