I am getting my hands on TFS 2010, and I am starting with trying to set a continuous integration build up. For this purpose I am using the default build template (DefaultTemplate.xml) configured with Code Analysis set as Always.

Everything works fine... except when it does not. When there is an error in the build (or a test failure), the only error available in the TFS report is the following

Unable to read Code Analysis output report. Make sure that the directory is writable (default is the project output directory).

The original error is reported only when there is no code analysis. When no error, the code analysis reports are correctly output.

Any ideas?

link|improve this question

77% accept rate
feedback

1 Answer

up vote 1 down vote accepted

What I expect is the following:

  • Code analysis off, no error: Build is fine
  • Code analysis off, build error: Workflow does not expect a code analysis file to be generated, original error is displayed, OK.
  • Code analysis on, no error: Analysis output is generated, and all goes fine.
  • Code analysis on, build error: Due to build error, code analysis is not performed, the ouput file is not generated. However the workflow expects to find an output file, which it does not find and this becomes the primary error logged in the build exception, hiding the original one.

So please inspect the order of items in your build template, to see if this is applicable and change it to make sure the code analysis output is not expected when a build error occurs.

link|improve this answer
Actually Code Analysis had inadvertendly been modified and was reporting an error in every case :-( But given the stated problem, your answer seems correct :-) – Mac Sep 15 '11 at 14:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.