diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-02-05 14:54:17 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-02-05 14:54:17 -0800 |
commit | 07be1da216debe1f76cd4d03ac5effcb9e40e6c6 (patch) | |
tree | 7642a42d6b7348710a13374c6b6dda1b6a51d225 /t | |
parent | 081363dde231346c2f051cd7d41622f6fa02e3cb (diff) | |
parent | e7d5ce816579723150c341116737fb51d8e33eb3 (diff) | |
download | git-07be1da216debe1f76cd4d03ac5effcb9e40e6c6.tar.gz git-07be1da216debe1f76cd4d03ac5effcb9e40e6c6.tar.xz |
Merge branch 'js/dirname-basename' into maint
dirname() emulation has been added, as Msys2 lacks it.
* js/dirname-basename:
mingw: avoid linking to the C library's isalpha()
t0060: loosen overly strict expectations
t0060: verify that basename() and dirname() work as expected
compat/basename.c: provide a dirname() compatibility function
compat/basename: make basename() conform to POSIX
Refactor skipping DOS drive prefixes
Diffstat (limited to 't')
-rwxr-xr-x | t/t0060-path-utils.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/t0060-path-utils.sh b/t/t0060-path-utils.sh index 627ef854d..f0152a7ab 100755 --- a/t/t0060-path-utils.sh +++ b/t/t0060-path-utils.sh @@ -59,6 +59,9 @@ case $(uname -s) in ;; esac +test_expect_success basename 'test-path-utils basename' +test_expect_success dirname 'test-path-utils dirname' + norm_path "" "" norm_path . "" norm_path ./ "" |