Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Merge branch 'master' into s-dash-stdin | ZyX | 2017-12-03 |
|\ | |||
| * | os/fileio: Add ability to use os/fileio.c for file descriptors | ZyX | 2017-07-04 |
| | | | | | | | | Code imported from #6299 | ||
| * | os/fileio: Add msgpack_file_write function | ZyX | 2017-07-04 |
| | | |||
| * | tests: Fix testlint errors | ZyX | 2017-04-03 |
| | | |||
| * | eval: Make writefile() able to disable fsync() | ZyX | 2017-04-02 |
| | | |||
| * | eval,fileio: Omit additional fsync() call | ZyX | 2017-04-01 |
| | | | | | | | | Fixes #6420 | ||
* | | unittests: Add tests for new fileio functions | ZyX | 2017-03-19 |
|/ | |||
* | unittests: Check core dumps in after_each, like in functests | ZyX | 2017-03-11 |
| | |||
* | unittests: Run all unit tests in their own processes | ZyX | 2017-03-11 |
| | | | | | | | | | | | | | | | Used sed -r -i -e '/ helpers =/ s/$/\nlocal itp = helpers.gen_itp(it)/; s/^(\s*)it\(/\1itp(/' test/unit/**/*_spec.lua to alter all tests. Locally they all run fine now. Reasoning: 1. General: state from one test should not affect other tests. 2. Local: travis build is failing with something which may be an output of garbage collector. This should prevent state of the garbage collector from interferring as well. | ||
* | unittests: Fix testlint errors | ZyX | 2016-06-24 |
| | |||
* | unittests: Fix kFileNoSymlink test on FreeBSD | ZyX | 2016-06-24 |
| | | | | | | | | | | | Actual value on FreeBSD is -31, UV_EMLINK was obtained from /usr/include/asm-generic/errno-base.h (there EMLINK is defined as 31 there). This may actually be something else, but I do not think so as “Too many links” description also fits in. [Man page][1] agrees with me, search for `[EMLINK]` ([linux man page][2] also specifies ELOOP explicitly in a similar section). [1]: https://www.freebsd.org/cgi/man.cgi?query=open&sektion=2 [2]: http://man7.org/linux/man-pages/man3/open.3p.html | ||
* | unittests: Fix bug somewhere that makes file_read tests SEGV | ZyX | 2016-06-24 |
| | |||
* | file: Move src/nvim/file.* to src/nvim/os/fileio.* | ZyX | 2016-06-24 |