<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rneovim.git/test/functional/legacy, branch v0.3.0</title>
<subtitle>Neovim fork with Rahm's personal hacks.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/'/>
<entry>
<title>vim-patch:8.0.0254: error message of assert functions (#8488)</title>
<updated>2018-06-07T07:59:45+00:00</updated>
<author>
<name>Jan Edmund Lazo</name>
<email>jan.lazo@mail.utoronto.ca</email>
</author>
<published>2018-06-07T07:59:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=7f6c1d256f4c9f78d71b4a605095d3dea0ea7abb'/>
<id>7f6c1d256f4c9f78d71b4a605095d3dea0ea7abb</id>
<content type='text'>
Problem:    When using an assert function one can either specify a message or
            get a message about what failed, not both.
Solution:   Concatenate the error with the message.
https://github.com/vim/vim/commit/c7b831ca154537505f5a22d01335a86b2e9cb023</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    When using an assert function one can either specify a message or
            get a message about what failed, not both.
Solution:   Concatenate the error with the message.
https://github.com/vim/vim/commit/c7b831ca154537505f5a22d01335a86b2e9cb023</pre>
</div>
</content>
</entry>
<entry>
<title>fixup: always delete Xfile, fix exit code check</title>
<updated>2018-05-25T11:43:02+00:00</updated>
<author>
<name>Jan Edmund Lazo</name>
<email>janedmundlazo@hotmail.com</email>
</author>
<published>2018-05-25T11:42:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=e21f454e116441443208f5c31beb01f67191b47a'/>
<id>e21f454e116441443208f5c31beb01f67191b47a</id>
<content type='text'>
after_each + os.remove ensures Xfile is deleted after every test.
Windows exit code is inconsistent.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
after_each + os.remove ensures Xfile is deleted after every test.
Windows exit code is inconsistent.
</pre>
</div>
</content>
</entry>
<entry>
<title>win: test: delete sautest/</title>
<updated>2018-05-25T02:11:15+00:00</updated>
<author>
<name>Jan Edmund Lazo</name>
<email>janedmundlazo@hotmail.com</email>
</author>
<published>2018-05-20T19:08:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=51db8ebf67c3cbb746e9be25c6536d849fdc2c8f'/>
<id>51db8ebf67c3cbb746e9be25c6536d849fdc2c8f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>win: test: don't test symlink if not admin user</title>
<updated>2018-05-25T02:11:14+00:00</updated>
<author>
<name>Jan Edmund Lazo</name>
<email>janedmundlazo@hotmail.com</email>
</author>
<published>2018-05-18T23:30:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=64177e3e98371b9afad44ffa47f1a0b694c5742a'/>
<id>64177e3e98371b9afad44ffa47f1a0b694c5742a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>win: test: disable non-admin failing tests</title>
<updated>2018-05-25T02:11:12+00:00</updated>
<author>
<name>Jan Edmund Lazo</name>
<email>janedmundlazo@hotmail.com</email>
</author>
<published>2018-05-18T21:30:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=209f05b48745e5e077d4d34ea7013d7bb20463de'/>
<id>209f05b48745e5e077d4d34ea7013d7bb20463de</id>
<content type='text'>
mkfifo (msysgit) does not work outside of msys2 environment.
gzip tests fail on Windows.

mklink requires admin privs for file symbolic links so mklink fails.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
mkfifo (msysgit) does not work outside of msys2 environment.
gzip tests fail on Windows.

mklink requires admin privs for file symbolic links so mklink fails.
</pre>
</div>
</content>
</entry>
<entry>
<title>API: return non-generic VimL errors</title>
<updated>2018-05-09T21:18:38+00:00</updated>
<author>
<name>Justin M. Keyes</name>
<email>justinkz@gmail.com</email>
</author>
<published>2018-05-07T01:24:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=c9f3174075a7168f10fabf806891ef59ee3b13d4'/>
<id>c9f3174075a7168f10fabf806891ef59ee3b13d4</id>
<content type='text'>
- Return VimL errors instead of generic errors for:
  - nvim_call_function
  - nvim_call_dict_function
- Fix tests which were silently broken before this change.

This violates #6150 where we agreed not to translate API errors.  But
that can be fixed later.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Return VimL errors instead of generic errors for:
  - nvim_call_function
  - nvim_call_dict_function
- Fix tests which were silently broken before this change.

This violates #6150 where we agreed not to translate API errors.  But
that can be fixed later.
</pre>
</div>
</content>
</entry>
<entry>
<title>build/msvc: Fix check for cksum on Windows</title>
<updated>2018-03-26T15:54:44+00:00</updated>
<author>
<name>b-r-o-c-k</name>
<email>brockmammen@gmail.com</email>
</author>
<published>2018-03-26T15:54:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=ab6051331cebcde712ccc547b550d2a5d42cd587'/>
<id>ab6051331cebcde712ccc547b550d2a5d42cd587</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: enable legacy/fixeol_spec in Windows</title>
<updated>2018-02-19T12:10:45+00:00</updated>
<author>
<name>Jan Edmund Lazo</name>
<email>jan.lazo@mail.utoronto.ca</email>
</author>
<published>2017-11-01T21:40:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=df99ab461ee2a515b82b53573de741b6d2024644'/>
<id>df99ab461ee2a515b82b53573de741b6d2024644</id>
<content type='text'>
Try nvim's delete() for cross-platform file remove in Windows
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Try nvim's delete() for cross-platform file remove in Windows
</pre>
</div>
</content>
</entry>
<entry>
<title>win: enable legacy test 051</title>
<updated>2018-02-19T12:10:44+00:00</updated>
<author>
<name>Jan Edmund Lazo</name>
<email>janedmundlazo@hotmail.com</email>
</author>
<published>2017-10-21T01:31:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=6beb7ee77ae7d0fdddc640b16eb8894a7c3a1883'/>
<id>6beb7ee77ae7d0fdddc640b16eb8894a7c3a1883</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>win: enable legacy test 059</title>
<updated>2018-02-19T12:10:44+00:00</updated>
<author>
<name>Jan Edmund Lazo</name>
<email>janedmundlazo@hotmail.com</email>
</author>
<published>2017-10-19T14:59:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.josher.dev/cgit/rneovim.git/commit/?id=f1e6828b7bf45e3d3ea9acfba6a3e49938caa132'/>
<id>f1e6828b7bf45e3d3ea9acfba6a3e49938caa132</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
