Merge pull request #303 from eduardomezencio/lua-fix-configs

Improve lua configuration and test files
This commit is contained in:
mergify[bot] 2020-11-22 21:55:53 +00:00 committed by GitHub
commit ff4acb17d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 21 deletions

View file

@ -10,7 +10,8 @@
"program": {
"command": "love"
},
"args": ["${workspaceFolder}"]
"args": ["${workspaceFolder}"],
"stopOnEntry": false
}
}
}

View file

@ -10,7 +10,8 @@
"program": {
"command": "love"
},
"args": ["${workspaceFolder}"]
"args": ["${workspaceFolder}"],
"stopOnEntry": false
}
}
}

View file

@ -9,7 +9,8 @@
"cwd": "${workspaceFolder}",
"program": {
"lua": "lua",
"file": "simple.lua"
"file": "simple.lua",
"stopOnEntry": false
}
}
},
@ -21,7 +22,8 @@
"cwd": "${workspaceFolder}",
"program": {
"lua": "luajit",
"file": "simple.lua"
"file": "simple.lua",
"stopOnEntry": false
}
}
}

View file

@ -1,7 +1,3 @@
if pcall(require, 'lldebugger') then
require('lldebugger').start()
end
local separator = ' '

View file

@ -13,30 +13,20 @@ function! BaseTest( configuration )
lcd ../support/test/lua/simple
exe 'edit ' . fn
call vimspector#SetLineBreakpoint( fn, 9 )
call vimspector#SetLineBreakpoint( fn, 5 )
call vimspector#LaunchWithSettings( { 'configuration': a:configuration } )
" This debugger is ignoring stopOnEntry when not running a custom executable
" and always stopping on the first line after setting the hook. This first
" check assumes that behavior.
call vimspector#test#signs#AssertCursorIsAtLineInBuffer( fn, 5, 1 )
call WaitForAssert( {->
\ vimspector#test#signs#AssertPCIsAtLineInBuffer( fn, 5 )
\ } )
" Continue
call feedkeys( "\<F5>", 'xt' )
call vimspector#test#signs#AssertCursorIsAtLineInBuffer( fn, 9, 1 )
call WaitForAssert( {->
\ vimspector#test#signs#AssertPCIsAtLineInBuffer( fn, 9 )
\ } )
" Step
call feedkeys( "\<F10>", 'xt' )
call vimspector#test#signs#AssertCursorIsAtLineInBuffer( fn, 10, 1 )
call vimspector#test#signs#AssertCursorIsAtLineInBuffer( fn, 6, 1 )
call WaitForAssert( {->
\ vimspector#test#signs#AssertPCIsAtLineInBuffer( fn, 10 )
\ vimspector#test#signs#AssertPCIsAtLineInBuffer( fn, 6 )
\ } )
call vimspector#test#setup#Reset()