view src/testdir/test_cd.vim @ 12450:1c02d9d87d59

Added tag v8.0.1104 for changeset 7a743053dfd615f19c03547ba7262676c0b92d11
author Christian Brabandt <cb@256bit.org>
date Thu, 14 Sep 2017 14:00:05 +0200
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