mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 01:44:36 +00:00
A from-scratch XML implementation, loosely modeled on the [spec](https://www.w3.org/TR/2006/REC-xml11-20060816). Features: - Supports enough of the XML 1.0/1.1 spec to handle the 99.9% of XML documents in common current usage. - Simple to understand and use. Small. Caveats: - We do NOT support HTML in this package, as that may or may not be valid XML. If it works, great. If it doesn't, that's not considered a bug. - We do NOT support UTF-16. If you have a UTF-16 XML file, please convert it to UTF-8 first. Also, our condolences. - <[!ELEMENT and <[!ATTLIST are not supported, and will be either ignored or return an error depending on the parser options. TODO: - Optional CDATA unboxing. - Optional `>`, ` `, ` ` and other escape substitution in tag bodies. - Test suite MAYBE: - XML writer? - Serialize/deserialize Odin types?
30 lines
894 B
Makefile
30 lines
894 B
Makefile
ODIN=../../odin
|
|
PYTHON=$(shell which python3)
|
|
|
|
all: download_test_assets image_test compress_test strings_test hash_test crypto_test encoding_test
|
|
|
|
download_test_assets:
|
|
$(PYTHON) download_assets.py
|
|
|
|
image_test:
|
|
$(ODIN) run image/test_core_image.odin -out=test_image -o:speed -no-bounds-check
|
|
|
|
compress_test:
|
|
$(ODIN) run compress/test_core_compress.odin -out=test_compress -o:speed -no-bounds-check
|
|
|
|
strings_test:
|
|
$(ODIN) run strings/test_core_strings.odin -out=test_strings -o:speed -no-bounds-check
|
|
|
|
odin_test:
|
|
$(ODIN) run odin -out=test_odin -o:speed -no-bounds-check
|
|
|
|
hash_test:
|
|
$(ODIN) run hash -out=test_hash -o:speed -no-bounds-check
|
|
|
|
crypto_test:
|
|
$(ODIN) run crypto -out=crypto_hash -o:speed -no-bounds-check
|
|
|
|
encoding_test:
|
|
$(ODIN) run encoding/json -out=test_encoding_json -o:speed -no-bounds-check
|
|
$(ODIN) run encoding/xml -out=test_encoding_xml -o:speed -no-bounds-check
|