Code

git-p4: fix key error for p4 problem
[git.git] / t / t9800-git-p4.sh
index 2d354f86d04250e48c2e9fe9358282145a8c477e..c1ea4d445caa1bd30a7c97547b635d84abfbdb9e 100755 (executable)
@@ -45,6 +45,19 @@ test_expect_success 'basic git-p4 clone' '
        rm -rf "$git" && mkdir "$git"
 '
 
+test_expect_success 'exit when p4 fails to produce marshaled output' '
+       badp4dir="$TRASH_DIRECTORY/badp4dir" &&
+       mkdir -p "$badp4dir" &&
+       cat >"$badp4dir"/p4 <<-EOF &&
+       #!$SHELL_PATH
+       exit 1
+       EOF
+       chmod 755 "$badp4dir"/p4 &&
+       PATH="$badp4dir:$PATH" "$GITP4" clone --dest="$git" //depot >errs 2>&1 ; retval=$? &&
+       test $retval -eq 1 &&
+       test_must_fail grep -q Traceback errs
+'
+
 test_expect_success 'shutdown' '
        pid=`pgrep -f p4d` &&
        test -n "$pid" &&