mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
tests: Set isFinal in test_column_number_after_parse
Without this, parsing of the end tag may be deferred, yielding an unexpected column number.
This commit is contained in:
parent
d52b414149
commit
2cee1061e2
1 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@
|
|||
Copyright (c) 2019 David Loffredo <loffredo@steptools.com>
|
||||
Copyright (c) 2020 Tim Gates <tim.gates@iress.com>
|
||||
Copyright (c) 2021 Dong-hee Na <donghee.na@python.org>
|
||||
Copyright (c) 2023 Sony Corporation / Snild Dolkow <snild@sony.com>
|
||||
Licensed under the MIT license:
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
|
@ -613,7 +614,7 @@ START_TEST(test_column_number_after_parse) {
|
|||
const char *text = "<tag></tag>";
|
||||
XML_Size colno;
|
||||
|
||||
if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_FALSE)
|
||||
if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_TRUE)
|
||||
== XML_STATUS_ERROR)
|
||||
xml_failure(g_parser);
|
||||
colno = XML_GetCurrentColumnNumber(g_parser);
|
||||
|
|
Loading…
Add table
Reference in a new issue