summaryrefslogtreecommitdiff
path: root/Test.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-07-30 17:03:50 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-07-30 17:04:05 -0400
commit8147563aa327753f2aba56a884174e760c28733e (patch)
tree37886b4ec45ad15937e00015ef587f7baab4b337 /Test.hs
parent42bbacc22543c95ba16131e8bbcf11c5432b744e (diff)
Diffstat (limited to 'Test.hs')
-rw-r--r--Test.hs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Test.hs b/Test.hs
index 62299da38..2adbb44c5 100644
--- a/Test.hs
+++ b/Test.hs
@@ -642,8 +642,12 @@ test_version env = "git-annex version" ~: intmpclonerepo env $ do
git_annex env "version" [] @? "version failed"
test_sync :: TestEnv -> Test
-test_sync env = "git-annex sync" ~: intmpclonerepo env $
+test_sync env = "git-annex sync" ~: intmpclonerepo env $ do
git_annex env "sync" [] @? "sync failed"
+ {- Regression test for bug fixed in
+ - 7b0970b340d7faeb745c666146c7f701ec71808f, where in direct mode
+ - sync committed the symlink standin file to the annex. -}
+ git_annex_expectoutput env "find" ["--in", "."] []
{- Regression test for union merge bug fixed in
- 0214e0fb175a608a49b812d81b4632c081f63027 -}