mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 18:39:10 +02:00
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:
parent
ec5eed13d3
commit
3eba350810
@ -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"/>
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user