X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=benchmark%2Fconfig.ml.in;fp=benchmark%2Fconfig.ml.in;h=0000000000000000000000000000000000000000;hb=4b52da1a20a4fe031930bb96d2ca46bec06dc529;hp=5d63b48905950910299b89995b13459c8231bb11;hpb=a223af3254fb51c279cfbccdc18c59484fdca74e;p=SXSI%2Fxpathcomp.git diff --git a/benchmark/config.ml.in b/benchmark/config.ml.in deleted file mode 100644 index 5d63b48..0000000 --- a/benchmark/config.ml.in +++ /dev/null @@ -1,29 +0,0 @@ -(* semi-colon separated list of input documents *) -let documents = [ "../tests/tiny.xml" ] - -(* semi-colon separated list of XPath queries *) -let queries = [ "//*" ] - - -(* I is the initial configuration - * MK (engine) (configuration) gives a new configuration - * valid engines are SXSI and SaxonBXQuery - * ex: if you only want to test SaxonBXQuery : - * module TEST = MK (SaxonBXQuery) (I) - *) - -module CONF : CONFIGURATION = -struct - let path = "output" - let result_basename = "test" - let num_runs = 2 - let run_with_output = true - let run_without_output = true -end - -module I = INIT_TESTER (CONF) - -module TEST = - MK (SXSI) - (MK (SaxonBXQuery) (I)) -