test runner: don't save the compiler output when compiling a project or package, the test rerporter cannot handle long strings, and the test results import cannot handle it either yet

git-svn-id: trunk@16171 -
This commit is contained in:
vincents 2008-08-20 22:20:19 +00:00
parent ec5eed13d3
commit 3eba350810
2 changed files with 2 additions and 5 deletions

View File

@ -59,14 +59,11 @@
</Units>
</ProjectOptions>
<CompilerOptions>
<Version Value="5"/>
<Version Value="8"/>
<PathDelim Value="\"/>
<SearchPaths>
<OtherUnitFiles Value="bugs\"/>
</SearchPaths>
<CodeGeneration>
<Generate Value="Faster"/>
</CodeGeneration>
<Linking>
<Debugging>
<UseLineInfoUnit Value="False"/>

View File

@ -155,7 +155,7 @@ begin
LazBuild.WaitOnExit;
if LazBuild.ExitStatus<>0 then
Fail(format('Compilation failed: ExitCode=%d%s%s',
[LazBuild.ExitStatus, LineEnding, OutputLines.Text]));
[LazBuild.ExitStatus, LineEnding, {OutputLines.Text}'']));
finally
LazBuild.Free;
OutputLines.Free;