You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Uwe Schindler (JIRA)" <ji...@apache.org> on 2011/05/05 17:09:03 UTC

[jira] [Commented] (LUCENE-3076) add -Dtests.codecprovider

    [ https://issues.apache.org/jira/browse/LUCENE-3076?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13029359#comment-13029359 ] 

Uwe Schindler commented on LUCENE-3076:
---------------------------------------

bq. possibly containing your own set of huper-duper codecs

I will copypaste that to my brain's speech centre before the talk at Lucene Revolution to entertain you again :-)

> add -Dtests.codecprovider
> -------------------------
>
>                 Key: LUCENE-3076
>                 URL: https://issues.apache.org/jira/browse/LUCENE-3076
>             Project: Lucene - Java
>          Issue Type: Improvement
>            Reporter: Robert Muir
>             Fix For: 4.0
>
>         Attachments: LUCENE-3076.patch
>
>
> Currently to test a codec (or set of codecs) you have to add them to lucene's core and edit a couple of arrays here and there...
> It would be nice if when using the test-framework you could instead specify a codecprovider by classname (possibly containing your own set of huper-duper codecs).
> For example I made the following little codecprovider in contrib:
> {noformat}
> public class AppendingCodecProvider extends CodecProvider {
>   public AppendingCodecProvider() {
>     register(new AppendingCodec());
>     register(new SimpleTextCodec());
>   }
> }
> {noformat}
> Then, I'm able to run tests with 'ant -lib build/contrib/misc/lucene-misc-4.0-SNAPSHOT.jar test-core -Dtests.codecprovider=org.apache.lucene.index.codecs.appending.AppendingCodecProvider', and it always picks from my set of  codecs (in this case Appending and SimpleText), and I can set -Dtests.codec=Appending if i want to set just one.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org