3 test_description
='git-p4 transparency to shell metachars in filenames'
7 test_expect_success
'start p4d' '
11 test_expect_success
'init depot' '
20 test_expect_success
'shell metachars in filenames' '
21 "$GITP4" clone --dest="$git" //depot &&
22 test_when_finished cleanup_git &&
25 git config git-p4.skipSubmitEditCheck true &&
28 echo f2 >"file with spaces" &&
29 git add "file with spaces" &&
30 git commit -m "add files" &&
31 P4EDITOR=touch "$GITP4" submit
36 test -e "file with spaces" &&
41 test_expect_success
'deleting with shell metachars' '
42 "$GITP4" clone --dest="$git" //depot &&
43 test_when_finished cleanup_git &&
46 git config git-p4.skipSubmitEditCheck true &&
48 git rm file\ with\ spaces &&
49 git commit -m "remove files" &&
50 P4EDITOR=touch "$GITP4" submit
55 test ! -e "file with spaces" &&
60 test_expect_success
'kill p4d' '