aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-08-05 00:17:59 +0200
committerGitHub <noreply@github.com>2017-08-05 00:17:59 +0200
commit37dd5ded7c74d70358ab0539d6ed978816b778f5 (patch)
tree1d5bb4969bcf901e9d1ecd8472856f9c93883c66 /src/nvim/testdir
parent36a91c790e5b58a002ca20671a357d8a0ffd2dff (diff)
parent678e87b90a08915d4fc16e3aada133f6482ba7a3 (diff)
downloadrneovim-37dd5ded7c74d70358ab0539d6ed978816b778f5.tar.gz
rneovim-37dd5ded7c74d70358ab0539d6ed978816b778f5.tar.bz2
rneovim-37dd5ded7c74d70358ab0539d6ed978816b778f5.zip
Merge #7111 from justinmk/unrevert
Unrevert vim-patch:8.0.0133
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r--src/nvim/testdir/test49.vim3
-rw-r--r--src/nvim/testdir/test_cmdline.vim7
2 files changed, 10 insertions, 0 deletions
diff --git a/src/nvim/testdir/test49.vim b/src/nvim/testdir/test49.vim
index 467abcd9b9..a0e170dea4 100644
--- a/src/nvim/testdir/test49.vim
+++ b/src/nvim/testdir/test49.vim
@@ -481,9 +481,12 @@ function! ExtraVim(...)
bwipeout
let g:Xpath = g:Xpath + sum
+ " FIXME(nvim): delete() of a file used by a subprocess hangs TSAN build on travis CI.
+ if !empty($TRAVIS)
" Delete the extra script and the resultfile.
call delete(extra_script)
call delete(resultfile)
+ endif
" Switch back to the buffer that was active when this function was entered.
exec "buffer" current_buffnr
diff --git a/src/nvim/testdir/test_cmdline.vim b/src/nvim/testdir/test_cmdline.vim
index c3bfae1b7b..09f4b942ad 100644
--- a/src/nvim/testdir/test_cmdline.vim
+++ b/src/nvim/testdir/test_cmdline.vim
@@ -232,3 +232,10 @@ func Test_paste_in_cmdline()
call assert_equal('"aaa a;b-c*d bbb', @:)
bwipe!
endfunc
+
+func Test_illegal_address()
+ new
+ 2;'(
+ 2;')
+ quit
+endfunc