aboutsummaryrefslogtreecommitdiff
path: root/t/mercurial.t
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-07-09 00:39:55 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-07-09 00:39:55 +0000
commite0da57358cc778436a5e5af1a2523611eb64f46e (patch)
tree3a4b68a3559079e71bd877d658185e9c9e749a6e /t/mercurial.t
parent5a809bdd98723ebc650398010dce57a29d25b6cd (diff)
downloadikiwiki-e0da57358cc778436a5e5af1a2523611eb64f46e.tar
ikiwiki-e0da57358cc778436a5e5af1a2523611eb64f46e.tar.gz
get confused. So it's best for ikiwiki to follow the compatability
* Support building on systems that lack asprintf. * mercurial getctime is currently broken, apparently by some change in mercurial version 0.9.4. Turn the failing test case into a TODO test case.
Diffstat (limited to 't/mercurial.t')
-rwxr-xr-xt/mercurial.t7
1 files changed, 5 insertions, 2 deletions
diff --git a/t/mercurial.t b/t/mercurial.t
index da4e2beaa..7d6c2eacc 100755
--- a/t/mercurial.t
+++ b/t/mercurial.t
@@ -56,7 +56,10 @@ is($changes[0]{pages}[0]{"page"}, "test2.mdwn");
is($changes[1]{pages}[0]{"page"}, "test1.mdwn");
-my $ctime = IkiWiki::rcs_getctime("test2.mdwn");
-is($ctime, 0);
+TODO: {
+ local $TODO = "hg behavior change seems to have broken this";
+ my $ctime = IkiWiki::rcs_getctime("test2.mdwn");
+ is($ctime, 0);
+}
system "rm -rf $dir";