You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've run compare benchmarks of quick-xml and get an error on that file:
PS D:\Projects\quick-xml\compare> cargo bench 'maybe_xml/sample_rss.xml'
Compiling quick-xml v0.31.0 (D:\Projects\quick-xml)
Compiling compare v0.1.0 (D:\Projects\quick-xml\compare)
Finished bench [optimized] target(s) in 13.28s
Running benches\bench.rs (target\release\deps\bench-1f141fad38284792.exe)
Gnuplot not found, using plotters backend
Benchmarking low-level API/maybe_xml/sample_rss.xml: Warming up for 3.0000 s
thread 'main' panicked at C:\Users\Mingun\.cargo\registry\src\index.crates.io-6f17d22bba15001f\maybe_xml-0.10.0\src\read.rs:167:83:
slice index starts at 3945 but ends at 3219
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
error: bench failed, to rerun pass `--bench bench`
PS D:\Projects\quick-xml\compare>
I've run compare benchmarks of quick-xml and get an error on that file:
To reproduce:
compareproject to the latest version and add quick-xml borrowed to compare table tafia/quick-xml#691)cd <path-to-quick-xml-checkout>/comparecargo bench 'maybe_xml/sample_rss.xml'The first offset (3945) is a start of CDATA block, the second (3219) is an end of a previous CDATA block. Here I selected a range between those offsets:
https://github.com/tafia/quick-xml/blob/222532c6718d39c023136c8fe1e28ef910bbe435/tests/documents/sample_rss.xml#L26C306-L32C29
Probably this is because
scan_cdatadoes not takeposas other scan functions, but then strange how it parse the first CDATA, because even in that case offsets should be incorrect:https://github.com/bluk/maybe_xml/blob/trunk/maybe_xml/src/read/scanner.rs#L299