[Lldb-commits] [PATCH] D66954: dotest: improvements to the pexpect tests

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 29 08:58:29 PDT 2019


labath created this revision.
labath added reviewers: teemperor, JDevlieghere, davide.
Herald added a subscriber: aprantl.

While working on r370054, i've found it frustrating that the test output
was compeletely unhelpful in case of failures. Therefore I've decided to
improve that. In this I reuse the PExpectTest class, which was one of
our mechanisms for running pexpect tests, but which has gotten orhpaned
in the mean time.

I've replaced the existing send methods with a "expect" method, which
I've tried to design so that it has a similar interface to the expect
method in regular non-pexpect dotest tests (as it essentially does
something very similar). I've kept the ability to dump the transcript of
the pexpect communication to stdout in the "trace" mode, as that is a
very handy way to figure out what the test is doing. I've also removed
the "expect_string" method used in the existing tests -- I've found this
to be unhelpful because it hides the message that would be normally
displayed by the EOF exception. Although vebose, this message includes
some important information, like what strings we were searching for,
what were the last bits of lldb output, etc. I've also beefed up the
class to automatically disable the debug info test duplication, and
auto-skip tests when the host platform does not support pexpect.

This patch ports TestMultilineCompletion and TestIOHandlerCompletion to
the new class. It also deletes TestFormats as it is not testing anything
(definitely not formats) -- it used to test something at one point, but
then the testing code was commented out, and later deleted in (r356000).


https://reviews.llvm.org/D66954

Files:
  packages/Python/lldbsuite/test/expression_command/multiline-completion/TestMultilineCompletion.py
  packages/Python/lldbsuite/test/functionalities/format/Makefile
  packages/Python/lldbsuite/test/functionalities/format/TestFormats.py
  packages/Python/lldbsuite/test/functionalities/format/main.c
  packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py
  packages/Python/lldbsuite/test/lldbpexpect.py

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66954.217902.patch
Type: text/x-patch
Size: 12604 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190829/a5a12805/attachment.bin>


More information about the lldb-commits mailing list