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> </Units>
</ProjectOptions> </ProjectOptions>
<CompilerOptions> <CompilerOptions>
<Version Value="5"/> <Version Value="8"/>
<PathDelim Value="\"/> <PathDelim Value="\"/>
<SearchPaths> <SearchPaths>
<OtherUnitFiles Value="bugs\"/> <OtherUnitFiles Value="bugs\"/>
</SearchPaths> </SearchPaths>
<CodeGeneration>
<Generate Value="Faster"/>
</CodeGeneration>
<Linking> <Linking>
<Debugging> <Debugging>
<UseLineInfoUnit Value="False"/> <UseLineInfoUnit Value="False"/>

View File

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