view src/testdir/test_cd.vim @ 12983:7a9c4a8b1ceb

patch 8.0.1367: terminal test hangs, executing abcde commit https://github.com/vim/vim/commit/461fe50fea245b2b199d92ebce4d9875d856bd27 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 5 12:30:03 2017 +0100 patch 8.0.1367: terminal test hangs, executing abcde Problem: terminal test hangs, executing abcde. (Stucki) Solution: Rename abcde to abxde.
author Christian Brabandt <cb@256bit.org>
date Tue, 05 Dec 2017 12:45:04 +0100
parents 290f5f6a2bac
children a1d21fc6e457
line wrap: on
line source

" Test for :cd

func Test_cd_large_path()
  " This used to crash with a heap write overflow.
  call assert_fails('cd ' . repeat('x', 5000), 'E472:')
endfunc

func Test_cd_up_and_down()
  let path = getcwd()
  cd ..
  exe 'cd ' . path
  call assert_equal(path, getcwd())
endfunc