diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-03-10 17:47:44 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-03-13 11:03:42 +0100 |
commit | fe8ba51209959c6ff200b4f7c847c7a3fc53ecfa (patch) | |
tree | 4e61ae8c2f06a8537017528b1002aadddee358dd /tests/data | |
parent | a7e24c736267d0cbf9ab2eedf2027b7d26e317bb (diff) |
server/getpart: make the "XML-parser" stricter
When extracting a <section> <part> and there's no </part> before
</section>, this now outputs an error and returns a wrong string to
make users spot the mistake.
Ref: #5070
Closes #5071
Diffstat (limited to 'tests/data')
-rw-r--r-- | tests/data/test1451 | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/tests/data/test1451 b/tests/data/test1451 index 0c114e186..a98e24ec6 100644 --- a/tests/data/test1451 +++ b/tests/data/test1451 @@ -8,7 +8,9 @@ SMB # # Server-side <reply> -<data>Basic SMB test complete</data> +<data nocheck="yes"> +Basic SMB test complete +</data> </reply> # @@ -20,10 +22,10 @@ smb <features> smb </features> - <name> +<name> Basic SMB request - </name> - <command> +</name> +<command> -u 'curltest:curltest' smb://%HOSTIP:%SMBPORT/TESTS/1451 </command> </client> @@ -31,6 +33,8 @@ Basic SMB request # # Verify data after the test has been "shot" <verify> -<stdout>Basic SMB test complete</stdout> +<stdout> +Basic SMB test complete +</stdout> </verify> </testcase> |