aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro+github@gmail.com>2019-03-19 17:44:35 +0100
committerGitHub <noreply@github.com>2019-03-19 17:44:35 +0100
commitf282324e1ba709986c6ef4a982541c4576873476 (patch)
treef8dc186e92d9b8c71c5e803aebdda6392638ea46
parent24d7513dc44f5195290e3cfbcce2287e9b2e4564 (diff)
downloadrneovim-f282324e1ba709986c6ef4a982541c4576873476.tar.gz
rneovim-f282324e1ba709986c6ef4a982541c4576873476.tar.bz2
rneovim-f282324e1ba709986c6ef4a982541c4576873476.zip
test: add more debuggings tips [ci skip] (#9761)
Mention the common press-enter issue and how to visualize the screen.
-rw-r--r--test/README.md23
1 files changed, 19 insertions, 4 deletions
diff --git a/test/README.md b/test/README.md
index d3f421e8fc..c87f835f79 100644
--- a/test/README.md
+++ b/test/README.md
@@ -88,10 +88,25 @@ To run a *single* legacy test set `TEST_FILE`, for example:
Debugging tests
---------------
-You can set `$GDB` to [run tests under gdbserver](https://github.com/neovim/neovim/pull/1527).
-And if `$VALGRIND` is set it will pass `--vgdb=yes` to valgrind instead of
-starting gdbserver directly.
-
+- You can set `$GDB` to [run tests under gdbserver](https://github.com/neovim/neovim/pull/1527).
+ And if `$VALGRIND` is set it will pass `--vgdb=yes` to valgrind instead of
+ starting gdbserver directly.
+- Hanging tests often happen due to unexpected `:h press-enter` prompts. The
+ default screen width is 50 columns. Commands that try to print lines longer
+ than 50 columns in the command-line, e.g. `:edit very...long...path`, will
+ trigger the prompt. In this case, a shorter path or `:silent edit` should be
+ used.
+- If you can't figure out what is going on, try to visualize the screen. Put
+ this at the beginning of your test:
+
+ ```lua
+ local Screen = require('test.functional.ui.screen')
+ local screen = Screen.new()
+ screen:attach()
+ ```
+
+ Afterwards, put `screen:snapshot_util()` at any position in your test. See the
+ comment at the top of `test/functional/ui/screen.lua` for more.
Filtering Tests
---------------