Change remote tracking to remote-tracking in non-trivial places
[gitweb.git] / t / t3404-rebase-interactive.sh
index 67fe76173827fed4e165f52c6a3184162b825f56..7d20a74c5ca1331ff241d1596bcb114e48a5907d 100755 (executable)
@@ -79,18 +79,18 @@ test_expect_success 'rebase -i with the exec command' '
        export FAKE_LINES &&
        test_must_fail git rebase -i A
        ) &&
-       test -f touch-one &&
-       test -f touch-two &&
-       ! test -f touch-three &&
+       test_path_is_file touch-one &&
+       test_path_is_file touch-two &&
+       test_path_is_missing touch-three " (should have stopped before)" &&
        test $(git rev-parse C) = $(git rev-parse HEAD) || {
                echo "Stopped at wrong revision:"
                echo "($(git describe --tags HEAD) instead of C)"
                false
        } &&
        git rebase --continue &&
-       test -f touch-three &&
-       test -f "touch-file  name with spaces" &&
-       test -f touch-after-semicolon &&
+       test_path_is_file touch-three &&
+       test_path_is_file "touch-file  name with spaces" &&
+       test_path_is_file touch-after-semicolon &&
        test $(git rev-parse master) = $(git rev-parse HEAD) || {
                echo "Stopped at wrong revision:"
                echo "($(git describe --tags HEAD) instead of master)"
@@ -101,11 +101,11 @@ test_expect_success 'rebase -i with the exec command' '
 
 test_expect_success 'rebase -i with the exec command runs from tree root' '
        git checkout master &&
-       mkdir subdir && cd subdir &&
+       mkdir subdir && (cd subdir &&
        FAKE_LINES="1 exec_>touch-subdir" \
-               git rebase -i HEAD^ &&
-       cd .. &&
-       test -f touch-subdir &&
+               git rebase -i HEAD^
+       ) &&
+       test_path_is_file touch-subdir &&
        rm -fr subdir
 '
 
@@ -204,16 +204,17 @@ test_expect_success 'abort' '
        git rebase --abort &&
        test $(git rev-parse new-branch1) = $(git rev-parse HEAD) &&
        test "$(git symbolic-ref -q HEAD)" = "refs/heads/branch1" &&
-       ! test -d .git/rebase-merge
+       test_path_is_missing .git/rebase-merge
 '
 
 test_expect_success 'abort with error when new base cannot be checked out' '
        git rm --cached file1 &&
        git commit -m "remove file in base" &&
        test_must_fail git rebase -i master > output 2>&1 &&
-       grep "Untracked working tree file .file1. would be overwritten" \
+       grep "The following untracked working tree files would be overwritten by checkout:" \
                output &&
-       ! test -d .git/rebase-merge &&
+       grep "file1" output &&
+       test_path_is_missing .git/rebase-merge &&
        git reset --hard HEAD^
 '
 
@@ -698,13 +699,19 @@ test_expect_success 'set up commits with funny messages' '
        git commit -a -m "end with slash\\" &&
        echo >>file1 &&
        test_tick &&
+       git commit -a -m "something (\000) that looks like octal" &&
+       echo >>file1 &&
+       test_tick &&
+       git commit -a -m "something (\n) that looks like a newline" &&
+       echo >>file1 &&
+       test_tick &&
        git commit -a -m "another commit"
 '
 
 test_expect_success 'rebase-i history with funny messages' '
        git rev-list A..funny >expect &&
        test_tick &&
-       FAKE_LINES="1 2" git rebase -i A &&
+       FAKE_LINES="1 2 3 4" git rebase -i A &&
        git rev-list A.. >actual &&
        test_cmp expect actual
 '