diff options
author | Joey Hess <joey@kitenet.net> | 2011-10-06 15:31:25 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-10-06 15:31:25 -0400 |
commit | 3e0d2a080333f3566312da0e1982739873603457 (patch) | |
tree | f168ffd2f7cd18f1070f7e18f6e6d8694cbd27a3 /test.hs | |
parent | 52fa4096480ba74c355dffcddbda766994f4d5b7 (diff) |
add timestamp to uuid.log
* New or changed repository descriptions in uuid.log now have a timestamp,
which is used to ensure the newest description is used when the uuid.log
has been merged.
* Note that older versions of git-annex will display the timestamp as part
of the repository description, which is ugly but otherwise harmless.
Diffstat (limited to 'test.hs')
-rw-r--r-- | test.hs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -31,6 +31,7 @@ import qualified Types import qualified GitAnnex import qualified LocationLog import qualified UUID +import qualified UUIDLog import qualified Trust import qualified Remote import qualified RemoteLog @@ -78,6 +79,8 @@ quickcheck = TestLabel "quickcheck" $ TestList , qctest "prop_relPathDirToFile_basics" Utility.Path.prop_relPathDirToFile_basics , qctest "prop_cost_sane" Config.prop_cost_sane , qctest "prop_hmacWithCipher_sane" Crypto.prop_hmacWithCipher_sane + , qctest "prop_TimeStamp_sane" UUIDLog.prop_TimeStamp_sane + , qctest "prop_addLog_sane" UUIDLog.prop_addLog_sane ] blackbox :: Test |