1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-20 01:08:33 +03:00
kakoune/test
Maxime Coste e66073bc94 Detect infinit recursion in reference highlighting
Reference highlighters allow for potential mutual recursion between
highlighters. This is usually fine, but if the recursion happens on
the same buffer range, it means we will recurse infinitely.

Fixes #1920
2018-03-11 11:44:10 +11:00
..
compose test: Fix UTF8 compliant locale detection 2017-02-23 18:46:56 +03:00
display Rework partial line display logic 2017-06-09 13:22:32 +01:00
highlight Move highlighters into Scopes 2017-10-28 13:43:04 +08:00
indent lua.kak: Rework 'end' auto insertion logic 2018-03-04 10:36:32 +11:00
normal Move WORD text object to <a-w> 2018-03-10 00:25:19 +11:00
regression Detect infinit recursion in reference highlighting 2018-03-11 11:44:10 +11:00
README.asciidoc add testing framework 2014-06-30 12:22:50 +02:00
run Add -lock switch to enter-user-mode command 2018-02-27 19:55:00 +01:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Regression test
===============

:unified-context-diff: https://en.wikipedia.org/wiki/Diff#Unified_format

Source structure
----------------

----------------------------------------------
.
├── unit
│   └── …
└── compose
    └── …
        ├── cmd          → command
        ├── [in]         → start file
        ├── [out]        → end file
        ├── [selections] → selection contents
        ├── [state]      → selection states
        └── [rc]         → configuration
----------------------------------------------

Usage
-----

To test, just type +run [test]+ in the +test+ directory.
It will print each passing test.  If a test fails, a {unified-context-diff}[unified context diff]
is printed showing the tests expected output and the actual output.