1#!/bin/sh23test_description='git-status with core.ignorecase=true'45. ./test-lib.sh67test_expect_success 'status with hash collisions' '8# note: "V/", "V/XQANY/" and "WURZAUP/" produce the same hash code9# in name-hash.c::hash_name10mkdir V &&11mkdir V/XQANY &&12mkdir WURZAUP &&13touch V/XQANY/test &&14git config core.ignorecase true &&15git add . &&16# test is successful if git status completes (no endless loop)17git status18'1920test_done