summaryrefslogtreecommitdiff
path: root/perf/README
diff options
context:
space:
mode:
authorAndrew Sidwell <andy@entai.co.uk>2008-07-31 15:11:12 +0000
committerAndrew Sidwell <andy@entai.co.uk>2008-07-31 15:11:12 +0000
commit923baf72744a3b91a82266e535fb45fa66d9cc19 (patch)
tree08684a67ab77966370aecca28e420854c4350396 /perf/README
parent41d22f924edf05a2356270f918580b720cc92e7a (diff)
downloadlibhubbub-923baf72744a3b91a82266e535fb45fa66d9cc19.tar.gz
libhubbub-923baf72744a3b91a82266e535fb45fa66d9cc19.tar.bz2
Add my cobbled-together perftests.
svn path=/trunk/hubbub/; revision=4842
Diffstat (limited to 'perf/README')
-rw-r--r--perf/README27
1 files changed, 27 insertions, 0 deletions
diff --git a/perf/README b/perf/README
new file mode 100644
index 0000000..1e9e847
--- /dev/null
+++ b/perf/README
@@ -0,0 +1,27 @@
+This directory contains some very basic cobbled-together performance tests.
+A makefile is provided for generating the executables from the .c files.
+
+
+html5libtest.py
+---------------
+
+ This tests the Python html5lib project, obtained from:
+ http://code.google.com/p/html5lib/
+
+ This is generally quite a slow parser. :)
+
+
+libxml2.c
+---------
+
+ This tests the GNOME libxml2 HTML parser, using mmap(). It doesn't do
+ anything with the resulting tree, just generates one.
+
+
+hubbub.c
+--------
+
+ This tests hubbub, using mmap(), and a modified version of the test
+ treebuilder. It could certainly be made more efficient (it's based on
+ an old version of the tree construction testrunner) so should not be
+ compared too harshly against the libxml2 results.