projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0601dc
)
t0060: verify that real_path() fails if passed the empty string
author
Michael Haggerty
<mhagger@alum.mit.edu>
Thu, 6 Sep 2012 22:41:00 +0000
(
00:41
+0200)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 6 Sep 2012 23:19:58 +0000
(16:19 -0700)
It doesn't, so mark the test as failing.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t0060-path-utils.sh
patch
|
blob
|
history
diff --git
a/t/t0060-path-utils.sh
b/t/t0060-path-utils.sh
index 924aa607d7c2421a664cec49e80baa6d3f66c120..1118056a1fd6f007fd2801ab8468c46f7fbe79ba 100755
(executable)
--- a/
t/t0060-path-utils.sh
+++ b/
t/t0060-path-utils.sh
@@
-144,6
+144,10
@@
test_expect_success 'absolute path rejects the empty string' '
test_must_fail test-path-utils absolute_path ""
'
+test_expect_failure 'real path rejects the empty string' '
+ test_must_fail test-path-utils real_path ""
+'
+
test_expect_success SYMLINKS 'real path works as expected' '
mkdir first &&
ln -s ../.git first/.git &&