diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro index 955c80eb1b..b0372acaf3 100644 --- a/tests/auto/auto.pro +++ b/tests/auto/auto.pro @@ -5,7 +5,7 @@ SUBDIRS += \ gui.pro \ network.pro \ sql \ - xml.pro \ + xml \ other.pro !cross_compile: SUBDIRS += host.pro diff --git a/tests/auto/xml.pro b/tests/auto/xml.pro deleted file mode 100644 index 9a48ce3829..0000000000 --- a/tests/auto/xml.pro +++ /dev/null @@ -1,6 +0,0 @@ -TEMPLATE=subdirs -SUBDIRS=\ - qdom \ - qxml \ - qxmlinputsource \ - qxmlsimplereader diff --git a/tests/auto/xml/dom/dom.pro b/tests/auto/xml/dom/dom.pro new file mode 100644 index 0000000000..17cfafcea7 --- /dev/null +++ b/tests/auto/xml/dom/dom.pro @@ -0,0 +1,4 @@ +TEMPLATE=subdirs +SUBDIRS=\ + qdom \ + diff --git a/tests/auto/qdom/.gitattributes b/tests/auto/xml/dom/qdom/.gitattributes similarity index 100% rename from tests/auto/qdom/.gitattributes rename to tests/auto/xml/dom/qdom/.gitattributes diff --git a/tests/auto/qdom/.gitignore b/tests/auto/xml/dom/qdom/.gitignore similarity index 100% rename from tests/auto/qdom/.gitignore rename to tests/auto/xml/dom/qdom/.gitignore diff --git a/tests/auto/qdom/doubleNamespaces.xml b/tests/auto/xml/dom/qdom/doubleNamespaces.xml similarity index 100% rename from tests/auto/qdom/doubleNamespaces.xml rename to tests/auto/xml/dom/qdom/doubleNamespaces.xml diff --git a/tests/auto/qdom/qdom.pro b/tests/auto/xml/dom/qdom/qdom.pro similarity index 100% rename from tests/auto/qdom/qdom.pro rename to tests/auto/xml/dom/qdom/qdom.pro diff --git a/tests/auto/qdom/testdata/excludedCodecs.txt b/tests/auto/xml/dom/qdom/testdata/excludedCodecs.txt similarity index 100% rename from tests/auto/qdom/testdata/excludedCodecs.txt rename to tests/auto/xml/dom/qdom/testdata/excludedCodecs.txt diff --git a/tests/auto/qdom/testdata/toString_01/doc01.xml b/tests/auto/xml/dom/qdom/testdata/toString_01/doc01.xml similarity index 100% rename from tests/auto/qdom/testdata/toString_01/doc01.xml rename to tests/auto/xml/dom/qdom/testdata/toString_01/doc01.xml diff --git a/tests/auto/qdom/testdata/toString_01/doc02.xml b/tests/auto/xml/dom/qdom/testdata/toString_01/doc02.xml similarity index 100% rename from tests/auto/qdom/testdata/toString_01/doc02.xml rename to tests/auto/xml/dom/qdom/testdata/toString_01/doc02.xml diff --git a/tests/auto/qdom/testdata/toString_01/doc03.xml b/tests/auto/xml/dom/qdom/testdata/toString_01/doc03.xml similarity index 100% rename from tests/auto/qdom/testdata/toString_01/doc03.xml rename to tests/auto/xml/dom/qdom/testdata/toString_01/doc03.xml diff --git a/tests/auto/qdom/testdata/toString_01/doc04.xml b/tests/auto/xml/dom/qdom/testdata/toString_01/doc04.xml similarity index 100% rename from tests/auto/qdom/testdata/toString_01/doc04.xml rename to tests/auto/xml/dom/qdom/testdata/toString_01/doc04.xml diff --git a/tests/auto/qdom/testdata/toString_01/doc05.xml b/tests/auto/xml/dom/qdom/testdata/toString_01/doc05.xml similarity index 100% rename from tests/auto/qdom/testdata/toString_01/doc05.xml rename to tests/auto/xml/dom/qdom/testdata/toString_01/doc05.xml diff --git a/tests/auto/qdom/testdata/toString_01/doc_euc-jp.xml b/tests/auto/xml/dom/qdom/testdata/toString_01/doc_euc-jp.xml similarity index 100% rename from tests/auto/qdom/testdata/toString_01/doc_euc-jp.xml rename to tests/auto/xml/dom/qdom/testdata/toString_01/doc_euc-jp.xml diff --git a/tests/auto/qdom/testdata/toString_01/doc_iso-2022-jp.xml b/tests/auto/xml/dom/qdom/testdata/toString_01/doc_iso-2022-jp.xml similarity index 100% rename from tests/auto/qdom/testdata/toString_01/doc_iso-2022-jp.xml rename to tests/auto/xml/dom/qdom/testdata/toString_01/doc_iso-2022-jp.xml diff --git a/tests/auto/qdom/testdata/toString_01/doc_little-endian.xml b/tests/auto/xml/dom/qdom/testdata/toString_01/doc_little-endian.xml similarity index 100% rename from tests/auto/qdom/testdata/toString_01/doc_little-endian.xml rename to tests/auto/xml/dom/qdom/testdata/toString_01/doc_little-endian.xml diff --git a/tests/auto/qdom/testdata/toString_01/doc_utf-16.xml b/tests/auto/xml/dom/qdom/testdata/toString_01/doc_utf-16.xml similarity index 100% rename from tests/auto/qdom/testdata/toString_01/doc_utf-16.xml rename to tests/auto/xml/dom/qdom/testdata/toString_01/doc_utf-16.xml diff --git a/tests/auto/qdom/testdata/toString_01/doc_utf-8.xml b/tests/auto/xml/dom/qdom/testdata/toString_01/doc_utf-8.xml similarity index 100% rename from tests/auto/qdom/testdata/toString_01/doc_utf-8.xml rename to tests/auto/xml/dom/qdom/testdata/toString_01/doc_utf-8.xml diff --git a/tests/auto/qdom/tst_qdom.cpp b/tests/auto/xml/dom/qdom/tst_qdom.cpp similarity index 100% rename from tests/auto/qdom/tst_qdom.cpp rename to tests/auto/xml/dom/qdom/tst_qdom.cpp diff --git a/tests/auto/qdom/umlaut.xml b/tests/auto/xml/dom/qdom/umlaut.xml similarity index 100% rename from tests/auto/qdom/umlaut.xml rename to tests/auto/xml/dom/qdom/umlaut.xml diff --git a/tests/auto/qxml/.gitignore b/tests/auto/xml/sax/qxml/.gitignore similarity index 100% rename from tests/auto/qxml/.gitignore rename to tests/auto/xml/sax/qxml/.gitignore diff --git a/tests/auto/qxml/0x010D.xml b/tests/auto/xml/sax/qxml/0x010D.xml similarity index 100% rename from tests/auto/qxml/0x010D.xml rename to tests/auto/xml/sax/qxml/0x010D.xml diff --git a/tests/auto/qxml/qxml.pro b/tests/auto/xml/sax/qxml/qxml.pro similarity index 100% rename from tests/auto/qxml/qxml.pro rename to tests/auto/xml/sax/qxml/qxml.pro diff --git a/tests/auto/qxml/tst_qxml.cpp b/tests/auto/xml/sax/qxml/tst_qxml.cpp similarity index 100% rename from tests/auto/qxml/tst_qxml.cpp rename to tests/auto/xml/sax/qxml/tst_qxml.cpp diff --git a/tests/auto/qxmlinputsource/.gitignore b/tests/auto/xml/sax/qxmlinputsource/.gitignore similarity index 100% rename from tests/auto/qxmlinputsource/.gitignore rename to tests/auto/xml/sax/qxmlinputsource/.gitignore diff --git a/tests/auto/qxmlinputsource/qxmlinputsource.pro b/tests/auto/xml/sax/qxmlinputsource/qxmlinputsource.pro similarity index 100% rename from tests/auto/qxmlinputsource/qxmlinputsource.pro rename to tests/auto/xml/sax/qxmlinputsource/qxmlinputsource.pro diff --git a/tests/auto/qxmlinputsource/tst_qxmlinputsource.cpp b/tests/auto/xml/sax/qxmlinputsource/tst_qxmlinputsource.cpp similarity index 100% rename from tests/auto/qxmlinputsource/tst_qxmlinputsource.cpp rename to tests/auto/xml/sax/qxmlinputsource/tst_qxmlinputsource.cpp diff --git a/tests/auto/qxmlsimplereader/.gitattributes b/tests/auto/xml/sax/qxmlsimplereader/.gitattributes similarity index 100% rename from tests/auto/qxmlsimplereader/.gitattributes rename to tests/auto/xml/sax/qxmlsimplereader/.gitattributes diff --git a/tests/auto/qxmlsimplereader/.gitignore b/tests/auto/xml/sax/qxmlsimplereader/.gitignore similarity index 100% rename from tests/auto/qxmlsimplereader/.gitignore rename to tests/auto/xml/sax/qxmlsimplereader/.gitignore diff --git a/tests/auto/qxmlsimplereader/encodings/doc_euc-jp.xml b/tests/auto/xml/sax/qxmlsimplereader/encodings/doc_euc-jp.xml similarity index 100% rename from tests/auto/qxmlsimplereader/encodings/doc_euc-jp.xml rename to tests/auto/xml/sax/qxmlsimplereader/encodings/doc_euc-jp.xml diff --git a/tests/auto/qxmlsimplereader/encodings/doc_iso-2022-jp.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/encodings/doc_iso-2022-jp.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/encodings/doc_iso-2022-jp.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/encodings/doc_iso-2022-jp.xml.ref diff --git a/tests/auto/qxmlsimplereader/encodings/doc_little-endian.xml b/tests/auto/xml/sax/qxmlsimplereader/encodings/doc_little-endian.xml similarity index 100% rename from tests/auto/qxmlsimplereader/encodings/doc_little-endian.xml rename to tests/auto/xml/sax/qxmlsimplereader/encodings/doc_little-endian.xml diff --git a/tests/auto/qxmlsimplereader/encodings/doc_utf-16.xml b/tests/auto/xml/sax/qxmlsimplereader/encodings/doc_utf-16.xml similarity index 100% rename from tests/auto/qxmlsimplereader/encodings/doc_utf-16.xml rename to tests/auto/xml/sax/qxmlsimplereader/encodings/doc_utf-16.xml diff --git a/tests/auto/qxmlsimplereader/encodings/doc_utf-8.xml b/tests/auto/xml/sax/qxmlsimplereader/encodings/doc_utf-8.xml similarity index 100% rename from tests/auto/qxmlsimplereader/encodings/doc_utf-8.xml rename to tests/auto/xml/sax/qxmlsimplereader/encodings/doc_utf-8.xml diff --git a/tests/auto/qxmlsimplereader/generate_ref_files.sh b/tests/auto/xml/sax/qxmlsimplereader/generate_ref_files.sh similarity index 100% rename from tests/auto/qxmlsimplereader/generate_ref_files.sh rename to tests/auto/xml/sax/qxmlsimplereader/generate_ref_files.sh diff --git a/tests/auto/qxmlsimplereader/parser/main.cpp b/tests/auto/xml/sax/qxmlsimplereader/parser/main.cpp similarity index 100% rename from tests/auto/qxmlsimplereader/parser/main.cpp rename to tests/auto/xml/sax/qxmlsimplereader/parser/main.cpp diff --git a/tests/auto/qxmlsimplereader/parser/parser.cpp b/tests/auto/xml/sax/qxmlsimplereader/parser/parser.cpp similarity index 100% rename from tests/auto/qxmlsimplereader/parser/parser.cpp rename to tests/auto/xml/sax/qxmlsimplereader/parser/parser.cpp diff --git a/tests/auto/qxmlsimplereader/parser/parser.h b/tests/auto/xml/sax/qxmlsimplereader/parser/parser.h similarity index 100% rename from tests/auto/qxmlsimplereader/parser/parser.h rename to tests/auto/xml/sax/qxmlsimplereader/parser/parser.h diff --git a/tests/auto/qxmlsimplereader/parser/parser.pro b/tests/auto/xml/sax/qxmlsimplereader/parser/parser.pro similarity index 100% rename from tests/auto/qxmlsimplereader/parser/parser.pro rename to tests/auto/xml/sax/qxmlsimplereader/parser/parser.pro diff --git a/tests/auto/qxmlsimplereader/qxmlsimplereader.pro b/tests/auto/xml/sax/qxmlsimplereader/qxmlsimplereader.pro similarity index 100% rename from tests/auto/qxmlsimplereader/qxmlsimplereader.pro rename to tests/auto/xml/sax/qxmlsimplereader/qxmlsimplereader.pro diff --git a/tests/auto/qxmlsimplereader/tst_qxmlsimplereader.cpp b/tests/auto/xml/sax/qxmlsimplereader/tst_qxmlsimplereader.cpp similarity index 100% rename from tests/auto/qxmlsimplereader/tst_qxmlsimplereader.cpp rename to tests/auto/xml/sax/qxmlsimplereader/tst_qxmlsimplereader.cpp diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/001.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/001.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/001.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/001.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/001.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/001.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/001.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/001.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/002.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/002.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/002.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/002.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/002.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/002.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/002.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/002.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/003.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/003.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/003.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/003.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/003.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/003.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/003.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/003.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/004.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/004.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/004.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/004.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/004.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/004.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/004.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/004.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/005.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/005.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/005.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/005.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/005.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/005.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/005.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/005.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/006.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/006.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/006.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/006.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/006.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/006.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/006.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/006.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/007.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/007.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/007.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/007.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/007.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/007.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/007.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/007.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/008.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/008.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/008.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/008.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/008.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/008.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/008.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/008.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/009.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/009.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/009.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/009.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/009.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/009.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/009.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/009.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/010.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/010.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/010.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/010.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/010.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/010.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/010.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/010.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/011.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/011.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/011.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/011.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/011.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/011.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/011.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/011.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/012.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/012.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/012.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/012.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/012.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/012.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/012.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/012.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/013.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/013.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/013.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/013.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/013.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/013.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/013.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/013.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/014.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/014.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/014.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/014.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/014.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/014.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/014.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/014.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/015.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/015.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/015.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/015.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/015.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/015.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/015.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/015.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/016.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/016.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/016.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/016.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/016.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/016.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/016.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/016.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/017.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/017.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/017.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/017.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/017.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/017.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/017.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/017.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/018.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/018.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/018.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/018.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/018.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/018.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/018.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/018.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/019.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/019.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/019.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/019.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/019.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/019.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/019.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/019.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/020.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/020.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/020.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/020.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/020.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/020.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/020.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/020.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/021.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/021.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/021.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/021.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/021.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/021.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/021.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/021.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/022.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/022.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/022.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/022.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/022.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/022.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/022.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/022.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/023.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/023.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/023.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/023.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/023.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/023.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/023.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/023.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/024.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/024.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/024.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/024.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/024.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/024.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/024.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/024.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/025.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/025.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/025.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/025.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/025.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/025.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/025.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/025.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/026.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/026.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/026.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/026.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/026.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/026.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/026.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/026.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/027.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/027.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/027.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/027.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/027.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/027.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/027.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/027.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/028.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/028.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/028.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/028.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/028.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/028.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/028.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/028.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/029.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/029.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/029.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/029.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/029.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/029.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/029.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/029.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/030.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/030.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/030.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/030.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/030.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/030.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/030.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/030.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/031.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/031.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/031.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/031.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/031.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/031.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/031.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/031.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/032.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/032.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/032.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/032.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/032.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/032.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/032.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/032.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/033.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/033.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/033.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/033.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/033.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/033.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/033.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/033.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/034.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/034.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/034.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/034.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/034.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/034.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/034.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/034.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/035.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/035.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/035.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/035.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/035.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/035.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/035.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/035.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/036.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/036.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/036.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/036.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/036.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/036.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/036.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/036.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/037.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/037.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/037.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/037.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/037.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/037.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/037.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/037.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/038.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/038.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/038.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/038.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/038.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/038.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/038.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/038.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/039.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/039.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/039.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/039.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/039.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/039.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/039.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/039.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/040.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/040.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/040.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/040.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/040.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/040.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/040.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/040.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/041.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/041.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/041.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/041.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/041.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/041.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/041.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/041.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/042.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/042.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/042.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/042.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/042.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/042.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/042.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/042.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/043.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/043.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/043.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/043.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/043.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/043.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/043.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/043.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/044.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/044.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/044.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/044.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/044.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/044.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/044.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/044.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/045.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/045.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/045.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/045.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/045.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/045.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/045.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/045.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/046.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/046.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/046.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/046.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/046.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/046.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/046.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/046.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/047.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/047.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/047.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/047.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/047.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/047.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/047.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/047.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/048.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/048.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/048.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/048.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/048.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/048.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/048.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/048.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/049.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/049.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/049.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/049.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/049.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/049.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/049.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/049.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/050.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/050.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/050.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/050.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/050.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/050.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/050.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/050.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/051.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/051.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/051.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/051.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/051.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/051.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/051.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/051.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/052.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/052.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/052.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/052.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/052.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/052.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/052.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/052.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/053.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/053.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/053.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/053.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/053.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/053.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/053.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/053.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/054.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/054.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/054.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/054.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/054.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/054.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/054.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/054.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/055.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/055.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/055.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/055.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/055.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/055.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/055.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/055.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/056.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/056.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/056.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/056.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/056.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/056.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/056.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/056.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/057.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/057.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/057.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/057.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/057.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/057.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/057.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/057.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/058.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/058.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/058.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/058.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/058.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/058.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/058.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/058.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/059.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/059.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/059.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/059.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/059.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/059.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/059.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/059.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/060.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/060.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/060.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/060.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/060.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/060.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/060.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/060.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/061.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/061.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/061.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/061.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/061.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/061.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/061.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/061.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/062.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/062.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/062.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/062.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/062.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/062.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/062.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/062.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/063.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/063.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/063.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/063.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/063.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/063.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/063.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/063.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/064.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/064.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/064.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/064.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/064.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/064.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/064.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/064.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/065.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/065.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/065.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/065.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/065.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/065.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/065.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/065.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/066.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/066.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/066.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/066.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/066.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/066.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/066.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/066.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/067.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/067.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/067.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/067.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/067.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/067.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/067.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/067.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/068.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/068.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/068.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/068.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/068.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/068.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/068.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/068.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/069.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/069.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/069.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/069.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/069.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/069.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/069.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/069.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/070.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/070.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/070.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/070.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/070.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/070.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/070.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/070.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/071.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/071.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/071.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/071.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/071.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/071.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/071.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/071.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/072.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/072.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/072.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/072.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/072.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/072.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/072.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/072.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/073.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/073.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/073.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/073.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/073.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/073.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/073.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/073.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/074.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/074.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/074.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/074.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/074.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/074.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/074.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/074.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/075.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/075.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/075.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/075.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/075.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/075.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/075.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/075.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/076.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/076.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/076.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/076.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/076.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/076.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/076.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/076.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/077.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/077.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/077.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/077.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/077.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/077.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/077.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/077.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/078.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/078.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/078.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/078.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/078.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/078.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/078.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/078.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/079.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/079.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/079.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/079.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/079.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/079.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/079.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/079.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/080.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/080.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/080.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/080.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/080.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/080.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/080.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/080.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/081.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/081.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/081.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/081.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/081.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/081.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/081.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/081.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/082.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/082.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/082.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/082.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/082.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/082.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/082.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/082.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/083.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/083.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/083.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/083.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/083.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/083.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/083.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/083.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/084.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/084.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/084.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/084.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/084.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/084.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/084.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/084.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/085.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/085.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/085.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/085.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/085.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/085.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/085.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/085.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/086.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/086.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/086.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/086.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/086.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/086.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/086.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/086.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/087.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/087.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/087.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/087.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/087.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/087.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/087.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/087.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/088.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/088.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/088.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/088.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/088.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/088.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/088.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/088.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/089.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/089.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/089.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/089.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/089.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/089.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/089.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/089.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/090.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/090.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/090.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/090.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/090.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/090.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/090.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/090.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/091.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/091.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/091.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/091.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/091.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/091.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/091.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/091.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/092.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/092.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/092.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/092.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/092.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/092.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/092.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/092.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/093.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/093.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/093.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/093.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/093.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/093.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/093.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/093.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/094.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/094.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/094.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/094.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/094.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/094.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/094.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/094.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/095.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/095.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/095.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/095.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/095.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/095.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/095.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/095.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/096.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/096.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/096.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/096.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/096.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/096.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/096.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/096.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/097.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/097.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/097.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/097.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/097.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/097.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/097.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/097.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/098.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/098.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/098.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/098.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/098.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/098.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/098.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/098.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/099.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/099.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/099.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/099.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/099.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/099.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/099.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/099.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/100.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/100.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/100.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/100.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/100.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/100.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/100.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/100.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/101.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/101.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/101.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/101.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/101.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/101.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/101.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/101.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/102.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/102.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/102.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/102.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/102.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/102.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/102.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/102.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/103.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/103.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/103.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/103.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/103.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/103.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/103.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/103.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/104.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/104.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/104.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/104.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/104.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/104.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/104.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/104.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/105.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/105.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/105.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/105.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/105.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/105.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/105.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/105.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/106.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/106.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/106.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/106.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/106.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/106.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/106.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/106.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/107.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/107.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/107.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/107.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/107.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/107.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/107.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/107.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/108.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/108.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/108.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/108.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/108.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/108.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/108.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/108.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/109.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/109.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/109.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/109.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/109.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/109.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/109.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/109.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/110.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/110.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/110.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/110.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/110.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/110.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/110.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/110.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/111.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/111.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/111.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/111.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/111.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/111.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/111.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/111.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/112.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/112.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/112.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/112.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/112.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/112.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/112.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/112.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/113.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/113.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/113.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/113.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/113.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/113.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/113.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/113.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/114.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/114.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/114.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/114.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/114.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/114.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/114.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/114.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/115.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/115.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/115.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/115.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/115.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/115.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/115.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/115.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/116.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/116.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/116.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/116.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/116.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/116.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/116.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/116.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/117.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/117.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/117.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/117.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/117.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/117.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/117.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/117.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/118.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/118.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/118.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/118.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/118.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/118.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/118.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/118.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/119.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/119.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/119.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/119.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/119.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/119.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/119.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/119.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/120.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/120.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/120.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/120.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/120.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/120.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/120.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/120.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/121.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/121.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/121.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/121.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/121.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/121.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/121.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/121.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/122.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/122.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/122.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/122.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/122.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/122.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/122.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/122.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/123.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/123.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/123.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/123.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/123.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/123.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/123.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/123.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/124.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/124.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/124.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/124.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/124.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/124.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/124.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/124.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/125.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/125.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/125.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/125.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/125.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/125.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/125.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/125.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/126.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/126.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/126.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/126.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/126.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/126.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/126.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/126.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/127.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/127.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/127.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/127.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/127.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/127.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/127.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/127.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/128.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/128.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/128.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/128.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/128.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/128.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/128.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/128.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/129.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/129.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/129.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/129.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/129.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/129.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/129.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/129.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/130.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/130.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/130.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/130.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/130.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/130.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/130.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/130.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/131.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/131.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/131.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/131.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/131.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/131.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/131.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/131.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/132.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/132.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/132.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/132.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/132.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/132.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/132.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/132.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/133.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/133.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/133.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/133.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/133.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/133.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/133.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/133.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/134.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/134.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/134.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/134.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/134.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/134.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/134.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/134.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/135.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/135.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/135.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/135.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/135.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/135.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/135.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/135.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/136.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/136.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/136.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/136.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/136.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/136.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/136.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/136.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/137.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/137.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/137.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/137.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/137.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/137.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/137.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/137.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/138.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/138.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/138.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/138.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/138.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/138.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/138.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/138.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/139.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/139.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/139.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/139.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/139.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/139.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/139.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/139.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/140.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/140.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/140.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/140.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/140.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/140.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/140.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/140.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/141.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/141.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/141.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/141.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/141.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/141.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/141.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/141.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/142.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/142.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/142.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/142.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/142.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/142.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/142.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/142.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/143.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/143.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/143.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/143.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/143.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/143.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/143.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/143.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/144.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/144.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/144.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/144.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/144.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/144.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/144.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/144.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/145.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/145.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/145.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/145.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/145.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/145.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/145.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/145.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/146.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/146.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/146.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/146.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/146.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/146.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/146.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/146.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/147.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/147.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/147.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/147.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/147.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/147.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/147.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/147.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/148.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/148.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/148.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/148.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/148.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/148.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/148.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/148.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/149.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/149.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/149.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/149.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/149.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/149.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/149.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/149.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/150.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/150.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/150.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/150.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/150.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/150.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/150.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/150.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/151.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/151.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/151.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/151.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/151.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/151.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/151.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/151.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/152.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/152.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/152.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/152.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/152.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/152.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/152.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/152.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/153.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/153.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/153.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/153.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/153.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/153.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/153.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/153.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/154.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/154.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/154.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/154.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/154.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/154.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/154.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/154.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/155.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/155.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/155.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/155.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/155.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/155.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/155.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/155.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/156.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/156.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/156.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/156.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/156.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/156.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/156.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/156.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/157.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/157.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/157.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/157.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/157.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/157.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/157.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/157.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/158.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/158.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/158.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/158.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/158.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/158.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/158.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/158.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/159.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/159.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/159.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/159.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/159.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/159.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/159.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/159.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/160.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/160.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/160.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/160.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/160.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/160.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/160.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/160.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/161.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/161.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/161.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/161.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/161.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/161.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/161.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/161.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/162.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/162.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/162.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/162.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/162.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/162.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/162.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/162.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/163.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/163.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/163.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/163.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/163.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/163.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/163.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/163.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/164.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/164.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/164.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/164.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/164.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/164.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/164.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/164.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/165.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/165.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/165.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/165.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/165.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/165.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/165.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/165.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/166.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/166.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/166.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/166.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/166.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/166.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/166.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/166.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/167.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/167.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/167.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/167.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/167.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/167.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/167.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/167.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/168.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/168.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/168.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/168.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/168.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/168.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/168.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/168.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/169.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/169.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/169.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/169.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/169.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/169.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/169.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/169.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/170.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/170.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/170.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/170.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/170.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/170.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/170.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/170.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/171.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/171.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/171.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/171.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/171.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/171.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/171.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/171.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/172.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/172.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/172.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/172.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/172.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/172.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/172.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/172.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/173.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/173.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/173.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/173.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/173.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/173.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/173.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/173.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/174.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/174.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/174.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/174.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/174.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/174.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/174.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/174.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/175.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/175.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/175.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/175.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/175.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/175.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/175.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/175.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/176.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/176.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/176.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/176.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/176.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/176.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/176.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/176.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/177.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/177.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/177.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/177.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/177.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/177.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/177.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/177.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/178.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/178.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/178.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/178.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/178.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/178.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/178.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/178.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/179.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/179.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/179.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/179.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/179.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/179.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/179.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/179.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/180.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/180.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/180.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/180.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/180.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/180.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/180.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/180.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/181.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/181.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/181.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/181.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/181.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/181.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/181.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/181.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/182.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/182.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/182.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/182.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/182.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/182.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/182.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/182.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/183.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/183.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/183.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/183.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/183.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/183.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/183.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/183.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/184.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/184.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/184.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/184.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/184.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/184.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/184.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/184.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/185.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/185.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/185.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/185.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/185.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/185.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/185.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/185.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/185.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/185.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/185.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/185.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/186.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/186.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/186.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/186.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/186.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/186.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/186.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/186.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/null.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/null.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/not-wf/sa/null.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/not-wf/sa/null.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/001.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/001.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/001.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/001.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/001.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/001.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/001.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/001.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/001.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/001.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/001.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/001.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/002.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/002.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/002.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/002.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/002.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/002.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/002.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/002.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/002.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/002.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/002.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/002.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/003.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/003.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/003.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/003.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/003.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/003.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/003.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/003.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/003.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/003.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/003.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/003.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/004.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/004.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/004.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/004.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/004.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/004.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/004.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/004.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/004.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/004.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/004.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/004.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/005.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/005.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/005.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/005.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/005.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/005.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/005.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/005.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/005.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/005.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/005.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/005.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/006.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/006.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/006.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/006.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/006.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/006.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/006.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/006.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/006.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/006.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/006.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/006.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/007.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/007.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/007.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/007.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/007.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/007.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/007.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/007.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/007.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/007.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/007.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/007.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/008.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/008.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/008.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/008.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/008.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/008.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/008.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/008.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/008.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/008.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/008.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/008.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/009.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/009.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/009.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/009.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/009.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/009.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/009.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/009.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/009.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/009.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/009.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/009.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/010.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/010.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/010.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/010.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/010.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/010.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/010.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/010.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/010.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/010.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/010.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/010.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/011.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/011.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/011.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/011.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/011.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/011.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/011.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/011.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/011.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/011.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/011.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/011.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/012.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/012.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/012.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/012.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/012.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/012.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/012.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/012.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/012.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/012.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/012.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/012.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/013.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/013.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/013.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/013.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/013.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/013.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/013.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/013.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/013.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/013.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/013.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/013.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/014.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/014.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/014.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/014.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/014.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/014.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/014.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/014.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/014.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/014.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/014.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/014.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_1.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_1.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_1.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_1.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_1.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_1.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_1.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_1.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_2.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_2.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_2.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_2.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_2.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_2.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_2.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_2.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_3.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_3.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_3.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_3.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_3.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_3.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_3.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/ext-sa/undef_entity_3.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/001.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/001.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/001.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/001.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/001.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/001.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/001.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/001.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/001.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/001.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/001.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/001.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/002.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/002.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/002.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/002.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/002.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/002.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/002.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/002.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/002.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/002.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/002.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/002.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/003-1.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/003-1.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/003-1.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/003-1.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/003-2.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/003-2.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/003-2.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/003-2.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/003.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/003.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/003.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/003.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/003.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/003.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/003.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/003.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/004-1.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/004-1.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/004-1.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/004-1.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/004-2.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/004-2.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/004-2.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/004-2.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/004.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/004.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/004.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/004.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/004.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/004.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/004.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/004.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/005-1.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/005-1.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/005-1.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/005-1.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/005-2.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/005-2.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/005-2.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/005-2.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/005.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/005.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/005.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/005.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/005.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/005.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/005.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/005.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/006.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/006.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/006.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/006.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/006.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/006.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/006.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/006.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/006.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/006.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/006.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/006.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/007.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/007.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/007.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/007.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/007.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/007.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/007.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/007.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/007.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/007.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/007.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/007.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/008.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/008.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/008.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/008.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/008.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/008.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/008.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/008.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/008.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/008.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/008.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/008.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/009.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/009.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/009.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/009.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/009.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/009.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/009.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/009.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/009.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/009.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/009.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/009.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/010.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/010.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/010.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/010.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/010.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/010.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/010.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/010.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/010.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/010.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/010.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/010.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/011.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/011.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/011.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/011.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/011.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/011.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/011.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/011.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/011.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/011.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/011.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/011.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/012.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/012.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/012.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/012.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/012.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/012.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/012.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/012.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/012.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/012.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/012.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/012.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/013.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/013.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/013.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/013.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/013.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/013.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/013.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/013.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/013.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/013.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/013.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/013.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/014.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/014.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/014.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/014.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/014.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/014.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/014.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/014.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/014.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/014.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/014.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/014.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/015.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/015.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/015.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/015.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/015.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/015.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/015.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/015.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/015.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/015.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/015.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/015.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/016.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/016.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/016.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/016.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/016.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/016.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/016.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/016.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/016.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/016.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/016.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/016.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/017.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/017.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/017.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/017.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/017.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/017.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/017.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/017.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/017.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/017.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/017.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/017.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/018.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/018.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/018.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/018.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/018.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/018.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/018.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/018.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/018.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/018.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/018.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/018.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/019.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/019.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/019.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/019.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/019.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/019.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/019.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/019.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/019.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/019.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/019.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/019.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/020.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/020.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/020.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/020.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/020.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/020.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/020.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/020.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/020.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/020.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/020.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/020.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/021.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/021.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/021.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/021.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/021.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/021.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/021.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/021.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/021.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/021.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/021.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/021.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/022.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/022.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/022.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/022.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/022.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/022.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/022.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/022.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/022.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/022.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/022.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/022.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/023.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/023.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/023.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/023.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/023.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/023.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/023.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/023.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/023.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/023.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/023.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/023.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/024.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/024.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/024.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/024.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/024.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/024.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/024.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/024.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/024.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/024.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/024.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/024.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/025.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/025.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/025.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/025.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/025.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/025.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/025.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/025.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/025.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/025.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/025.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/025.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/026.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/026.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/026.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/026.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/026.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/026.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/026.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/026.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/026.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/026.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/026.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/026.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/027.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/027.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/027.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/027.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/027.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/027.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/027.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/027.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/027.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/027.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/027.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/027.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/028.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/028.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/028.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/028.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/028.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/028.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/028.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/028.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/028.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/028.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/028.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/028.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/029.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/029.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/029.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/029.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/029.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/029.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/029.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/029.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/029.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/029.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/029.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/029.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/030.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/030.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/030.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/030.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/030.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/030.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/030.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/030.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/030.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/030.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/030.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/030.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/031-1.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/031-1.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/031-1.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/031-1.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/031-2.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/031-2.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/031-2.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/031-2.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/031.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/031.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/031.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/031.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/031.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/031.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/not-sa/031.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/not-sa/031.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/001.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/001.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/001.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/001.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/001.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/001.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/001.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/001.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/002.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/002.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/002.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/002.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/002.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/002.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/002.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/002.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/003.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/003.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/003.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/003.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/003.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/003.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/003.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/003.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/004.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/004.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/004.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/004.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/004.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/004.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/004.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/004.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/005.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/005.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/005.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/005.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/005.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/005.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/005.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/005.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/006.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/006.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/006.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/006.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/006.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/006.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/006.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/006.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/007.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/007.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/007.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/007.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/007.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/007.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/007.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/007.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/008.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/008.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/008.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/008.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/008.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/008.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/008.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/008.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/009.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/009.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/009.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/009.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/009.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/009.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/009.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/009.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/010.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/010.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/010.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/010.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/010.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/010.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/010.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/010.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/011.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/011.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/011.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/011.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/011.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/011.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/011.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/011.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/012.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/012.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/012.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/012.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/012.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/012.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/012.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/012.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/013.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/013.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/013.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/013.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/013.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/013.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/013.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/013.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/014.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/014.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/014.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/014.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/014.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/014.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/014.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/014.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/015.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/015.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/015.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/015.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/015.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/015.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/015.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/015.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/016.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/016.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/016.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/016.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/016.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/016.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/016.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/016.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/017.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/017.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/017.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/017.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/017.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/017.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/017.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/017.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/018.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/018.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/018.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/018.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/018.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/018.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/018.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/018.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/019.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/019.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/019.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/019.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/019.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/019.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/019.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/019.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/020.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/020.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/020.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/020.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/020.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/020.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/020.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/020.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/021.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/021.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/021.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/021.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/021.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/021.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/021.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/021.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/022.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/022.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/022.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/022.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/022.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/022.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/022.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/022.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/023.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/023.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/023.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/023.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/023.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/023.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/023.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/023.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/024.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/024.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/024.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/024.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/024.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/024.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/024.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/024.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/025.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/025.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/025.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/025.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/025.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/025.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/025.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/025.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/026.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/026.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/026.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/026.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/026.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/026.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/026.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/026.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/027.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/027.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/027.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/027.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/027.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/027.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/027.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/027.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/028.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/028.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/028.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/028.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/028.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/028.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/028.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/028.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/029.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/029.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/029.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/029.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/029.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/029.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/029.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/029.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/030.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/030.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/030.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/030.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/030.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/030.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/030.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/030.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/031.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/031.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/031.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/031.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/031.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/031.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/031.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/031.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/032.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/032.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/032.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/032.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/032.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/032.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/032.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/032.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/033.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/033.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/033.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/033.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/033.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/033.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/033.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/033.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/034.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/034.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/034.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/034.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/034.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/034.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/034.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/034.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/035.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/035.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/035.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/035.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/035.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/035.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/035.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/035.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/036.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/036.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/036.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/036.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/036.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/036.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/036.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/036.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/037.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/037.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/037.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/037.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/037.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/037.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/037.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/037.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/038.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/038.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/038.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/038.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/038.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/038.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/038.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/038.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/039.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/039.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/039.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/039.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/039.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/039.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/039.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/039.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/040.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/040.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/040.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/040.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/040.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/040.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/040.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/040.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/041.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/041.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/041.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/041.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/041.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/041.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/041.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/041.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/042.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/042.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/042.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/042.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/042.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/042.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/042.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/042.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/043.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/043.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/043.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/043.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/043.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/043.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/043.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/043.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/044.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/044.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/044.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/044.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/044.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/044.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/044.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/044.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/045.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/045.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/045.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/045.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/045.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/045.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/045.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/045.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/046.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/046.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/046.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/046.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/046.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/046.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/046.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/046.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/047.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/047.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/047.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/047.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/047.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/047.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/047.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/047.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/048.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/048.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/048.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/048.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/048.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/048.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/048.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/048.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/049.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/049.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/049.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/049.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/049.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/049.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/049.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/049.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/050.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/050.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/050.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/050.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/050.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/050.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/050.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/050.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/051.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/051.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/051.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/051.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/051.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/051.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/051.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/051.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/052.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/052.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/052.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/052.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/052.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/052.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/052.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/052.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/053.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/053.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/053.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/053.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/053.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/053.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/053.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/053.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/054.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/054.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/054.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/054.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/054.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/054.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/054.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/054.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/055.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/055.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/055.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/055.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/055.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/055.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/055.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/055.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/056.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/056.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/056.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/056.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/056.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/056.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/056.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/056.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/057.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/057.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/057.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/057.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/057.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/057.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/057.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/057.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/058.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/058.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/058.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/058.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/058.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/058.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/058.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/058.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/059.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/059.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/059.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/059.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/059.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/059.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/059.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/059.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/060.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/060.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/060.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/060.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/060.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/060.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/060.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/060.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/061.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/061.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/061.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/061.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/061.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/061.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/061.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/061.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/062.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/062.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/062.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/062.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/062.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/062.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/062.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/062.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/063.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/063.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/063.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/063.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/063.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/063.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/063.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/063.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/064.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/064.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/064.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/064.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/064.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/064.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/064.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/064.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/065.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/065.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/065.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/065.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/065.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/065.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/065.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/065.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/066.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/066.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/066.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/066.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/066.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/066.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/066.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/066.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/067.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/067.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/067.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/067.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/067.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/067.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/067.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/067.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/068.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/068.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/068.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/068.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/068.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/068.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/068.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/068.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/069.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/069.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/069.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/069.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/069.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/069.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/069.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/069.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/070.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/070.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/070.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/070.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/070.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/070.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/070.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/070.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/071.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/071.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/071.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/071.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/071.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/071.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/071.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/071.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/072.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/072.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/072.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/072.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/072.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/072.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/072.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/072.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/073.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/073.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/073.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/073.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/073.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/073.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/073.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/073.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/074.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/074.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/074.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/074.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/074.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/074.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/074.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/074.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/075.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/075.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/075.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/075.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/075.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/075.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/075.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/075.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/076.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/076.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/076.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/076.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/076.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/076.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/076.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/076.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/077.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/077.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/077.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/077.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/077.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/077.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/077.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/077.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/078.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/078.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/078.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/078.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/078.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/078.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/078.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/078.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/079.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/079.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/079.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/079.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/079.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/079.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/079.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/079.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/080.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/080.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/080.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/080.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/080.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/080.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/080.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/080.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/081.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/081.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/081.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/081.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/081.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/081.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/081.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/081.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/082.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/082.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/082.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/082.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/082.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/082.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/082.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/082.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/083.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/083.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/083.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/083.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/083.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/083.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/083.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/083.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/084.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/084.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/084.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/084.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/084.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/084.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/084.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/084.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/085.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/085.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/085.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/085.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/085.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/085.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/085.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/085.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/086.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/086.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/086.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/086.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/086.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/086.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/086.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/086.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/087.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/087.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/087.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/087.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/087.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/087.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/087.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/087.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/088.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/088.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/088.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/088.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/088.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/088.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/088.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/088.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/089.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/089.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/089.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/089.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/089.xml.bak b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/089.xml.bak similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/089.xml.bak rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/089.xml.bak diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/089.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/089.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/089.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/089.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/090.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/090.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/090.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/090.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/090.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/090.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/090.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/090.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/091.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/091.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/091.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/091.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/091.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/091.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/091.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/091.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/092.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/092.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/092.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/092.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/092.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/092.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/092.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/092.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/093.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/093.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/093.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/093.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/093.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/093.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/093.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/093.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/094.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/094.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/094.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/094.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/094.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/094.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/094.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/094.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/095.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/095.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/095.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/095.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/095.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/095.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/095.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/095.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/096.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/096.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/096.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/096.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/096.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/096.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/096.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/096.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/097.ent b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/097.ent similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/097.ent rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/097.ent diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/097.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/097.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/097.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/097.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/097.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/097.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/097.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/097.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/098.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/098.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/098.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/098.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/098.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/098.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/098.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/098.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/099.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/099.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/099.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/099.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/099.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/099.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/099.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/099.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/100.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/100.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/100.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/100.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/100.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/100.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/100.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/100.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/101.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/101.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/101.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/101.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/101.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/101.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/101.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/101.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/102.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/102.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/102.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/102.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/102.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/102.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/102.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/102.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/103.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/103.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/103.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/103.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/103.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/103.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/103.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/103.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/104.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/104.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/104.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/104.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/104.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/104.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/104.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/104.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/105.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/105.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/105.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/105.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/105.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/105.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/105.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/105.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/106.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/106.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/106.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/106.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/106.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/106.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/106.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/106.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/107.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/107.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/107.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/107.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/107.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/107.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/107.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/107.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/108.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/108.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/108.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/108.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/108.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/108.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/108.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/108.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/109.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/109.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/109.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/109.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/109.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/109.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/109.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/109.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/110.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/110.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/110.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/110.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/110.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/110.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/110.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/110.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/111.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/111.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/111.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/111.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/111.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/111.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/111.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/111.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/112.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/112.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/112.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/112.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/112.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/112.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/112.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/112.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/113.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/113.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/113.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/113.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/113.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/113.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/113.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/113.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/114.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/114.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/114.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/114.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/114.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/114.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/114.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/114.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/115.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/115.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/115.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/115.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/115.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/115.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/115.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/115.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/116.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/116.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/116.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/116.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/116.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/116.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/116.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/116.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/117.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/117.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/117.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/117.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/117.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/117.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/117.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/117.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/118.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/118.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/118.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/118.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/118.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/118.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/118.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/118.xml.ref diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/119.xml b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/119.xml similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/119.xml rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/119.xml diff --git a/tests/auto/qxmlsimplereader/xmldocs/valid/sa/119.xml.ref b/tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/119.xml.ref similarity index 100% rename from tests/auto/qxmlsimplereader/xmldocs/valid/sa/119.xml.ref rename to tests/auto/xml/sax/qxmlsimplereader/xmldocs/valid/sa/119.xml.ref diff --git a/tests/auto/xml/sax/sax.pro b/tests/auto/xml/sax/sax.pro new file mode 100644 index 0000000000..13aeb21d07 --- /dev/null +++ b/tests/auto/xml/sax/sax.pro @@ -0,0 +1,6 @@ +TEMPLATE=subdirs +SUBDIRS=\ + qxmlinputsource \ + qxml \ + qxmlsimplereader \ + diff --git a/tests/auto/xml/xml.pro b/tests/auto/xml/xml.pro new file mode 100644 index 0000000000..4b90ffbe13 --- /dev/null +++ b/tests/auto/xml/xml.pro @@ -0,0 +1,5 @@ +TEMPLATE=subdirs +SUBDIRS=\ + dom \ + sax \ +