This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 6fd3916168af24357e12bc1b36cdbeb64985bbf7 Author: shuke <[email protected]> AuthorDate: Wed May 29 11:09:28 2024 +0800 [regression-test](framework) add log for scpFiles (#35570) --- .../src/main/groovy/org/apache/doris/regression/suite/Suite.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy index 3efe1d90a8f..47d990ebd64 100644 --- a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy +++ b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy @@ -721,6 +721,7 @@ class Suite implements GroovyInterceptable { logger.info("Execute: ${cmd}".toString()) Process process = cmd.execute() def code = process.waitFor() + staticLogger.info("execute result ${process.getText()}.") Assert.assertEquals(0, code) } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
