diff options
author | Joey Hess <joey@kitenet.net> | 2013-05-15 19:33:27 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-05-15 19:33:27 -0400 |
commit | fe131bce0c365c5b95a9e464cf4252c862ff7118 (patch) | |
tree | 861c8e7b19d8ac5ba68b255f919062dac25cd466 /Test.hs | |
parent | 9faa6f0e33dd9e8c7ec3b96715ea3878ff9ef2f0 (diff) |
more fixes for test suite in direct mode
Still quite a few failures.
Diffstat (limited to 'Test.hs')
-rw-r--r-- | Test.hs | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -188,7 +188,7 @@ test_add env = "git-annex add" ~: TestList [basic, sha1dup, subdirs] boolSystem "git" [Params "rm --force -q", File wormannexedfile] @? "git rm failed" writeFile ingitfile $ content ingitfile boolSystem "git" [Param "add", File ingitfile] @? "git add failed" - boolSystem "git" [Params "commit -q -a -m commit"] @? "git commit failed" + boolSystem "git" [Params "commit -q -m commit"] @? "git commit failed" git_annex env "add" [ingitfile] @? "add ingitfile should be no-op" unannexed ingitfile sha1dup = TestCase $ intmpclonerepo env $ do @@ -373,7 +373,7 @@ test_edit env = "git-annex edit/commit" ~: TestList [t False, t True] git_annex env "pre-commit" [] @? "pre-commit failed" else do - boolSystem "git" [Params "commit -q -a -m contentchanged"] + boolSystem "git" [Params "commit -q -m contentchanged"] @? "git commit of edited file failed" runchecks [checklink, checkunwritable] annexedfile c <- readFile annexedfile @@ -906,11 +906,14 @@ checkwritable f = do Right _ -> return () checkdangling :: FilePath -> Assertion -checkdangling f = do - r <- tryIO $ readFile f - case r of - Left _ -> return () -- expected; dangling link - Right _ -> assertFailure $ f ++ " was not a dangling link as expected" +checkdangling f = ifM (annexeval Config.crippledFileSystem) + ( return () -- probably no real symlinks to test + , do + r <- tryIO $ readFile f + case r of + Left _ -> return () -- expected; dangling link + Right _ -> assertFailure $ f ++ " was not a dangling link as expected" + ) checklocationlog :: FilePath -> Bool -> Assertion checklocationlog f expected = do |