From 3eba350810e2571e0bd031115f4fd6822b0acf2b Mon Sep 17 00:00:00 2001 From: vincents Date: Wed, 20 Aug 2008 22:20:19 +0000 Subject: [PATCH] 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 - --- test/runtests.lpi | 5 +---- test/testlpi.pas | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/test/runtests.lpi b/test/runtests.lpi index f1d7729a16..8e5ec020fd 100644 --- a/test/runtests.lpi +++ b/test/runtests.lpi @@ -59,14 +59,11 @@ - + - - - diff --git a/test/testlpi.pas b/test/testlpi.pas index b16d964ffb..0588da9093 100644 --- a/test/testlpi.pas +++ b/test/testlpi.pas @@ -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;