mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
704a3143d5
Many tests depend on that symbolic links work. This introduces a check that sets the prerequisite tag SYMLINKS if the file system supports symbolic links. Since so many tests have to check for this prerequisite, we do the check in test-lib.sh, so that we don't need to repeat the test in many scripts. To check for 'ln -s' failures, you can use a FAT partition on Linux: $ mkdosfs -C git-on-fat 1000000 $ sudo mount -o loop,uid=j6t,gid=users,shortname=winnt git-on-fat /mnt Clone git to /mnt and $ GIT_SKIP_TESTS='t0001.1[34] t0010 t1301 t403[34] t4129.[47] t5701.7 t7701.3 t9100 t9101.26 t9119 t9124.[67] t9200.10 t9600.6' \ make test (These additionally skipped tests depend on POSIX permissions that FAT on Linux does not provide.) Signed-off-by: Johannes Sixt <j6t@kdbg.org>
37 lines
733 B
Bash
Executable file
37 lines
733 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='cd_to_toplevel'
|
|
|
|
. ./test-lib.sh
|
|
|
|
test_cd_to_toplevel () {
|
|
test_expect_success $3 "$2" '
|
|
(
|
|
cd '"'$1'"' &&
|
|
. git-sh-setup &&
|
|
cd_to_toplevel &&
|
|
[ "$(pwd -P)" = "$TOPLEVEL" ]
|
|
)
|
|
'
|
|
}
|
|
|
|
TOPLEVEL="$(pwd -P)/repo"
|
|
mkdir -p repo/sub/dir
|
|
mv .git repo/
|
|
SUBDIRECTORY_OK=1
|
|
|
|
test_cd_to_toplevel repo 'at physical root'
|
|
|
|
test_cd_to_toplevel repo/sub/dir 'at physical subdir'
|
|
|
|
ln -s repo symrepo 2>/dev/null
|
|
test_cd_to_toplevel symrepo 'at symbolic root' SYMLINKS
|
|
|
|
ln -s repo/sub/dir subdir-link 2>/dev/null
|
|
test_cd_to_toplevel subdir-link 'at symbolic subdir' SYMLINKS
|
|
|
|
cd repo
|
|
ln -s sub/dir internal-link 2>/dev/null
|
|
test_cd_to_toplevel internal-link 'at internal symbolic subdir' SYMLINKS
|
|
|
|
test_done
|