transport-helper: drop read/write errno checks
[git.git] / t / t2300-cd-to-toplevel.sh
blobc8de6d8a1902209ef98ec0832296ed9060310429
1 #!/bin/sh
3 test_description='cd_to_toplevel'
5 . ./test-lib.sh
7 EXEC_PATH="$(git --exec-path)"
8 test_have_prereq !MINGW ||
9 case "$EXEC_PATH" in
10 [A-Za-z]:/*)
11 EXEC_PATH="/${EXEC_PATH%%:*}${EXEC_PATH#?:}"
13 esac
15 test_cd_to_toplevel () {
16 test_expect_success $3 "$2" '
18 cd '"'$1'"' &&
19 PATH="$EXEC_PATH:$PATH" &&
20 . git-sh-setup &&
21 cd_to_toplevel &&
22 [ "$(pwd -P)" = "$TOPLEVEL" ]
27 TOPLEVEL="$(pwd -P)/repo"
28 mkdir -p repo/sub/dir
29 mv .git repo/
30 SUBDIRECTORY_OK=1
32 test_cd_to_toplevel repo 'at physical root'
34 test_cd_to_toplevel repo/sub/dir 'at physical subdir'
36 ln -s repo symrepo 2>/dev/null
37 test_cd_to_toplevel symrepo 'at symbolic root' SYMLINKS
39 ln -s repo/sub/dir subdir-link 2>/dev/null
40 test_cd_to_toplevel subdir-link 'at symbolic subdir' SYMLINKS
42 cd repo
43 ln -s sub/dir internal-link 2>/dev/null
44 test_cd_to_toplevel internal-link 'at internal symbolic subdir' SYMLINKS
46 test_done