git-annex-shell can now be used as a login shell

This commit is contained in:
Joey Hess 2010-12-31 20:33:43 -04:00
parent e153a116bb
commit 5c29bb3b7c
3 changed files with 46 additions and 8 deletions

View file

@ -3,11 +3,14 @@ import Test.HUnit.Tools
import GitRepo
import Locations
import Utility
alltests :: [Test]
alltests = [
qctest "prop_idempotent_deencode" prop_idempotent_deencode,
qctest "prop_idempotent_fileKey" prop_idempotent_fileKey
qctest "prop_idempotent_fileKey" prop_idempotent_fileKey,
qctest "prop_idempotent_shellescape" prop_idempotent_shellescape,
qctest "prop_idempotent_shellescape_multiword" prop_idempotent_shellescape_multiword
]
main :: IO (Counts, Int)