| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-08-01 | test: update | Marc André Tanner | |
| 2020-07-27 | test/vis: remove entire text object test | Marc André Tanner | |
| 2020-07-26 | test/vis: remove z> tests | Marc André Tanner | |
| 2020-07-26 | test/vis: remove z< tests | Marc André Tanner | |
| 2020-07-26 | test/vis: remove z- tests | Marc André Tanner | |
| 2020-07-26 | test/vis: remove z+ tests | Marc André Tanner | |
| 2020-07-26 | test/vis: remove pairwise selection intersection | Marc André Tanner | |
| 2020-07-26 | test/vis: remove pairwise selection union z| | Marc André Tanner | |
| 2020-07-26 | test/vis: use ~ instead of ! to complement selection | Marc André Tanner | |
| 2020-07-26 | test/vim: use g~ instead of ~ to swap case | Marc André Tanner | |
| 2020-07-26 | test/fuzz: add @ dump command to print data structure | Marc André Tanner | |
| 2020-07-26 | test/fuzz: add % command to print data structure memory information | Marc André Tanner | |
| 2020-07-25 | Add basic text benchmarking infrastructure | Marc André Tanner | |
| This adds a new bench command to the interactive shell initially used for fuzzing with AFL. The syntax is: > b op pos [count] where op is either: i (insert) d (delete) r (replace) m (set/get mark) and pos is one of: ^ (start) | (middle) $ (end) % (random) - (consecutively from end to start) + (consecutively from start to end) ~ (stripes with fixed distance) Hence the following would perform 100 insertions at random positions: > b i % 100 Note however, that the used pseudo-random number generator is currently not seeded, meaning multiple execution will start with the same state, making them comparable. Timing is currently performed using monotonic clock_gettime(2). | |||
| 2020-07-17 | test: update | Marc André Tanner | |
| 2020-07-17 | support for primary clipboard | Jeremy Bobbin | |
| 2020-07-12 | test/sam: set LANG=en_US.UTF-8 | Marc André Tanner | |
| Conceptually C.UTF-8 would be the correct setting. However, it is currently not supported by upstream glibc (albeit patched in by various distriubtions e.g. Debian, Ubuntu and Fedora). The vis specific tests already use the same locale, hence it is not a new dependency and the Debian CI script has been adapted accordingly in martanne/vis@b0192ce. Fix #25 | |||
| 2020-07-11 | test: move failing sam tests to vis | Marc André Tanner | |
| Contrary to sam we do currently not change the buffer if the external command fails. Fix #24 | |||
| 2020-07-11 | test/core: let make clean remove generated files | Marc André Tanner | |
| Fix #23 | |||
| 2020-07-11 | vis-open: add trailing "/" for the folders | Vadym Kochan | |
| Add trailing "/" for the folder entries which allows to easy differentiate folders and the regular files. Additionally it allows easy filter only folders by simply enter "/" in the vis-open prompt. Signed-off-by: Vadym Kochan <vadim4j@gmail.com> | |||
| 2020-07-11 | build: mark distclean and testclean targets as PHONY | Marc André Tanner | |
| 2020-07-07 | Makefile: add testclean target | Paride Legovini | |
| The target calls `make clean` in the test submodule, if present. The target is called by the `distclean` target. | |||
| 2020-07-07 | Makefile: add distclean target | Paride Legovini | |
| 2020-06-30 | build: define LUA_COMPAT_5_3 | Christian Hesse | |
| This is required to build with lua 5.4.x. | |||
| 2020-06-28 | text: simplify remapping of original file content | Marc André Tanner | |
| Use mmap with MAP_FIXED which replaces existing mappings without any race conditions between the munmap/mmap calls. | |||
| 2020-06-22 | text: remove dead store | Marc André Tanner | |
| 2020-06-22 | text: code cleanup, use local variable | Marc André Tanner | |
| No functionl change. | |||
| 2020-06-22 | text: fix typo in comments, no code change | Marc André Tanner | |
| 2020-06-20 | Support wayland clipboard (wl-clipboard) | yory8 | |
| 2020-06-07 | build: add git based version information back | Marc André Tanner | |
| 2020-06-07 | build: set version to 0.6 | Marc André Tanner | |
| 2020-06-07 | ui: fix terminal UI on serial console | Marc André Tanner | |
| Make sure we do not override the 80x24 default terminal size with zero size as reported by an actual serial console. | |||
| 2020-05-30 | test: update | Marc André Tanner | |
| 2020-05-30 | test/fuzz: simplify Makefile | Marc André Tanner | |
| 2020-05-30 | vis: fix implicit enum conversion warning | Marc André Tanner | |
| 2020-05-30 | build: update alpine in docker build to version 3.12 | Christian Hesse | |
| 2020-05-14 | test/fuzz: add libfuzzer target for text data structure | Marc André Tanner | |
| This reuses the existing fuzzing driver initially written for afl-fuzz. As a consequence, quite a bit of stdio code is involved which is probably not optimal. | |||
| 2020-05-14 | test/fuzz: fix compilation by adapting to newer API | Marc André Tanner | |
| 2020-05-14 | test/fuzz: add missing CFLAGS | Marc André Tanner | |
| 2020-05-13 | doc: update outdated version information | Marc André Tanner | |
| 2020-05-13 | doc: update sphinx configuration to python 3 | Marc André Tanner | |
| This was performed automatically using: 2to3 -w conf.py | |||
| 2020-05-13 | test: update | Marc André Tanner | |
| 2020-05-13 | test/vim: remove test which fails on macOS | Marc André Tanner | |
| 2020-05-13 | test/core: add basic save/load tests involving links | Marc André Tanner | |
| 2020-05-13 | test/core: add basic save/load sanity tests | Marc André Tanner | |
| 2020-05-13 | test/core: remove unused variable | Marc André Tanner | |
| 2020-05-13 | test/core: instruct memory sanitizer to track memory origin | Marc André Tanner | |
| 2020-05-13 | test/core: fix memory leak in array test | Marc André Tanner | |
| 2020-05-13 | text: introduce text_save_method, remove text_save_range | Marc André Tanner | |
| This utility function is analogous to text_load_method and allows the caller to specify how the file should be saved. It is implemented as a wrapper around the lower level text_save_{begin,write,commit} primitives. The unused text_save_range function has been removed. If needed, use the aforementioned lower level functionality. | |||
| 2020-05-13 | test/core: update ccan tap module | Marc André Tanner | |
| Syncs to last upstream change d1a951b82386391b82e48b32403891f85e253565 of the tap module. | |||
| 2020-05-12 | test: update | Marc André Tanner | |
