diff options
author | intrigeri <intrigeri@boum.org> | 2008-11-02 16:44:42 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2008-11-02 16:44:42 +0100 |
commit | fafa98ea96c0e28818ffcf47b7202c4130615c68 (patch) | |
tree | 225529c707eab97bbc7c71bb4e20b71425f16c72 | |
parent | 77136538788350ad2decaa445704ba5738074736 (diff) |
disable istranslatable memoization
It makes some test cases cry once every two tries; this may be related to the
artificial way the testsuite is run, or not. In the meantime, stop memoizing
this function.
Signed-off-by: intrigeri <intrigeri@boum.org>
-rw-r--r-- | IkiWiki/Plugin/po.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index f535ebd39..a1f7476a3 100644 --- a/IkiWiki/Plugin/po.pm +++ b/IkiWiki/Plugin/po.pm @@ -18,7 +18,9 @@ use Memoize; my %translations; our %filtered; -memoize("istranslatable"); +## FIXME: makes some test cases cry once every two tries; this may be +## related to the artificial way the testsuite is run, or not. +# memoize("istranslatable"); memoize("_istranslation"); memoize("percenttranslated"); |