From: Karl Hasselström Date: Wed, 19 Dec 2007 20:51:21 +0000 (+0100) Subject: Test that "stg goto" can be called from a subdirectory X-Git-Tag: v0.15-rc1~304 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/ab96cd1c21c3bb7aa4efd802da97ef6b3e426ed5 Test that "stg goto" can be called from a subdirectory It currently can't; therefore, the tests are marked as known failures. Signed-off-by: Karl Hasselström --- diff --git a/t/t2800-goto-subdir.sh b/t/t2800-goto-subdir.sh new file mode 100755 index 0000000..9f3ab26 --- /dev/null +++ b/t/t2800-goto-subdir.sh @@ -0,0 +1,59 @@ +#!/bin/sh + +test_description='Run "stg goto" in a subdirectory' + +. ./test-lib.sh + +test_expect_success 'Initialize StGit stack' ' + stg init && + echo expected1.txt >> .git/info/exclude && + echo expected2.txt >> .git/info/exclude && + echo actual.txt >> .git/info/exclude && + mkdir foo && + for i in 1 2 3; do + echo foo$i >> foo/bar && + stg new p$i -m p$i && + git add foo/bar && + stg refresh + done +' + +cat > expected1.txt < expected2.txt < actual.txt && + diff -u expected1.txt actual.txt && + ls foo > actual.txt && + diff -u expected2.txt actual.txt +' + +test_expect_success 'Prepare conflicting goto' ' + stg delete p2 +' + +cat > expected1.txt <>>>>>> patched:foo/bar +EOF +cat > expected2.txt < actual.txt && + diff -u expected1.txt actual.txt && + ls foo > actual.txt && + diff -u expected2.txt actual.txt +' + +test_done