[Lldb-commits] [lldb] f22c63b - [lldb/test] Start pexpect tests with a custom HOME

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 14 10:00:29 PDT 2021


Thanks! Just FYI, I was actually about to open a review for allowing
configuring the history directory which should also address this.

Am Di., 14. Sept. 2021 um 15:18 Uhr schrieb Pavel Labath via
lldb-commits <lldb-commits at lists.llvm.org>:
>
>
> Author: Pavel Labath
> Date: 2021-09-14T15:17:10+02:00
> New Revision: f22c63b41bda01163a88b0bb9887a9324810732f
>
> URL: https://github.com/llvm/llvm-project/commit/f22c63b41bda01163a88b0bb9887a9324810732f
> DIFF: https://github.com/llvm/llvm-project/commit/f22c63b41bda01163a88b0bb9887a9324810732f.diff
>
> LOG: [lldb/test] Start pexpect tests with a custom HOME
>
> This addresses the flakyness of (at least) TestMultilineNavigation,
> which was failing when the editline history of a concurrently executing
> test made leaked in. Using a test-specific home directory ensures the
> tests are independent.
>
> Added:
>
>
> Modified:
>     lldb/packages/Python/lldbsuite/test/lldbpexpect.py
>
> Removed:
>
>
>
> ################################################################################
> diff  --git a/lldb/packages/Python/lldbsuite/test/lldbpexpect.py b/lldb/packages/Python/lldbsuite/test/lldbpexpect.py
> index f7c0e490105af..d3e3e8dde5d84 100644
> --- a/lldb/packages/Python/lldbsuite/test/lldbpexpect.py
> +++ b/lldb/packages/Python/lldbsuite/test/lldbpexpect.py
> @@ -36,7 +36,8 @@ def launch(self, executable=None, extra_args=None, timeout=60, dimensions=None):
>              args.extend(extra_args)
>
>          env = dict(os.environ)
> -        env["TERM"]="vt100"
> +        env["TERM"] = "vt100"
> +        env["HOME"] = self.getBuildDir()
>
>          import pexpect
>          self.child = pexpect.spawn(
>
>
>
> _______________________________________________
> lldb-commits mailing list
> lldb-commits at lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits


More information about the lldb-commits mailing list