New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some lua tests fail with lua 5.4 #8042
Labels
Comments
|
failed to run with lua 5.4. Seems that lua 5.4 has changed error
message. Should I bother about failding tests with lua 5.4 or compile
vim vs lua 5.3 only?
We already adjust the expected errors for Lua 5.3:
call assert_fails('luado func()',
\ s:lua_53_or_later
\ ? "[string \"vim chunk\"]:1: attempt to call a nil value (global 'func')"
\ : "[string \"vim chunk\"]:1: attempt to call global 'func' (a nil value)")
Apparently we need to add a s:lua_54_or_later check.
…--
On the other hand, you have different fingers.
-- Steven Wright
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|
|
@vp1981 could you prepare a PR to fix those failures? |
|
@chrisbra, I'll try to make one on weekend. |
|
Hi,
I have made the changes. I will create a PR for this.
- Yegappan
…On Thu, Apr 1, 2021 at 5:52 PM Vladimir Lomov ***@***.***> wrote:
@chrisbra <https://github.com/chrisbra>, I'll try to make one on weekend.
|
|
Hi. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Some lua tests:
failed to run with lua 5.4. Seems that lua 5.4 has changed error message. Should I bother about failding tests with lua 5.4 or compile vim vs lua 5.3 only?
Additional context
OS: Archlinux x86_64
GCC: gcc (GCC) 10.2.0
LUA: lua 5.4.3
The text was updated successfully, but these errors were encountered: