Workaround for wrong recognized exception in result log

This commit is contained in:
Michael Bogdanov
2016-04-22 16:56:13 +03:00
parent a9a917a99e
commit 518cc7aa7f
@@ -55,6 +55,9 @@ public class CodegenTestsOnAndroidRunner {
String resultOutput = runTests();
if (resultOutput == null) return suite;
//Fix problem with exception parsing cause 'at' pattern
resultOutput = resultOutput.replaceAll("\\[checkenv\\] Installed at", "[checkenv] Installed_at");
// Test name -> stackTrace
Map<String, String> resultMap = parseOutputForFailedTests(resultOutput);
final Statistics statistics;