]> Kevux Git Server - fll/commitdiff
Security: Missing range checks on comment processing.
authorKevin Day <Kevin@kevux.org>
Tue, 6 Aug 2024 03:12:48 +0000 (22:12 -0500)
committerKevin Day <Kevin@kevux.org>
Tue, 6 Aug 2024 04:14:20 +0000 (23:14 -0500)
The fss_payload_read such as the runtime test is wrong:
  # fss_payload_read -ocn payload level_3/fss_read/tests/runtime/fss_000e/source/test-0002-mixed.fss -t

The output is 1 but should instead be 4.
  # fss_payload_read -ocn payload level_3/fss_read/tests/runtime/fss_000e/source/test-0002-mixed.fss | wc -l

Investigating this problem revealed that the comment handling code is failing to perform a range check.
The overflow is causing the stop range to point to some random memory address which is almost always larger than the file.
This results in the count being wrong.

This bug is a security concern.
Add the range check in all places where this range check is missing for the comments.

Add additional runtime tests to reflect the condition that exposed this issue.
There is now a "payload" test for all runtime tests.

Update the testfile to make manually generating and verifying the runtime tests easier.
The "generate" and "verify" fakefile operations could not be directly called due needing additional data setup.
Also expose the "test-" setting as a parameter to make changing it easier.

325 files changed:
level_3/fss_read/c/main/process_normal.c
level_3/fss_read/data/build/testfile
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-привет.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-привет.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-привет-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-привет-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-select-0-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-select-0.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-select-1-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-select-1.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-total.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload.expect [new file with mode: 0644]
level_3/fss_read/tests/runtime/script/generate.sh

index be9a5a6651c351214264ee5c6f07660cb49d7d1f..ca40d53ae51508e487881016ae7de936369d248e 100644 (file)
@@ -12,7 +12,6 @@ extern "C" {
     fss_read_main_t * const main = (fss_read_main_t *) void_main;
 
     // @todo note that embedded list will probably need to implement its own version of this function (aka: fss_read_process_embedded).
-    // @todo note that payload will probably need to implement its own version of this function (aka: fss_read_process_payload).
 
     // For depth, most standards do not support nesting, so any depth greater than 0 can be predicted without processing the buffer.
     // For select, most standards do not support multiple select, so any select greater than 0 can be predicted without processing the buffer.
@@ -319,12 +318,14 @@ extern "C" {
             if (fss_read_signal_check(main)) return;
 
             if (k < main->setting.comments.used) {
-              while (main->setting.comments.array[k].stop < j) ++k;
+              while (k < main->setting.comments.used && main->setting.comments.array[k].stop < j) ++k;
 
-              if (j >= main->setting.comments.array[k].start && j <= main->setting.comments.array[k].stop) {
-                j = main->setting.comments.array[k++].stop + 1;
+              if (k < main->setting.comments.used) {
+                if (j >= main->setting.comments.array[k].start && j <= main->setting.comments.array[k].stop) {
+                  j = main->setting.comments.array[k++].stop + 1;
 
-                if (j > main->setting.range.stop) break;
+                  if (j > main->setting.range.stop) break;
+                }
               }
             }
 
@@ -569,12 +570,14 @@ extern "C" {
           for (j = range.start; j <= range.stop; ++j) {
 
             if (k < main->setting.comments.used) {
-              while (main->setting.comments.array[k].stop < j) ++k;
+              while (k < main->setting.comments.used && main->setting.comments.array[k].stop < j) ++k;
 
-              if (j >= main->setting.comments.array[k].start && j <= main->setting.comments.array[k].stop) {
-                j = main->setting.comments.array[k++].stop;
+              if (k < main->setting.comments.used) {
+                if (j >= main->setting.comments.array[k].start && j <= main->setting.comments.array[k].stop) {
+                  j = main->setting.comments.array[k++].stop;
 
-                continue;
+                  continue;
+                }
               }
             }
 
index ba9d7b5396b2ccb4f40fdb32453e39e70c695384..ec131e873de68f74dc737ad3fdee56bd9caefb2c 100644 (file)
@@ -15,104 +15,117 @@ settings:
   # Change this to a valid shell script, such as "bash" or "zsh".
   parameter script bash
 
+  # To build the specific tests files use an empty string instead of "test-".
+  parameter test_prefix test-
+
 main:
   build settings
   build settings.main
 
   operate build_path
   operate ld_library_path
-  operate generate
-  operate verify
+  operate generate_process
+  operate verify_process
+
+verify:
+  operate build_path
+  operate ld_library_path
+  operate verify_process
 
 generate:
+  operate build_path
+  operate ld_library_path
+  operate generate_process
+
+generate_process:
   print
   print Generating Test 0000 for Basic (FSS-0000).
   print
 
   touch directory parameter:"build_path"test/fss_0000
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0000 tests/runtime/fss_0000/source/test-0000-quotes_and_escapes.fss parameter:"build_path"test/fss_0000
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0000 tests/runtime/fss_0000/source/test-0000-quotes_and_escapes.fss parameter:"build_path"test/fss_0000
 
   print
   print Generating Test 0001 for Basic (FSS-0000).
   print
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0000 tests/runtime/fss_0000/source/test-0001-unicode.fss parameter:"build_path"test/fss_0000
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0000 tests/runtime/fss_0000/source/test-0001-unicode.fss parameter:"build_path"test/fss_0000
 
   print
   print Generating Test 0000 for Extended (FSS-0001).
   print
   touch directory parameter:"build_path"test/fss_0001
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0001 tests/runtime/fss_0001/source/test-0000-quotes_and_escapes.fss parameter:"build_path"test/fss_0001
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0001 tests/runtime/fss_0001/source/test-0000-quotes_and_escapes.fss parameter:"build_path"test/fss_0001
 
   print
   print Generating Test 0001 for Extended (FSS-0001).
   print
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0001 tests/runtime/fss_0001/source/test-0001-unicode.fss parameter:"build_path"test/fss_0001
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0001 tests/runtime/fss_0001/source/test-0001-unicode.fss parameter:"build_path"test/fss_0001
 
   print
   print Generating Test 0000 for Basic List (FSS-0002).
   print
   touch directory parameter:"build_path"test/fss_0002
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0002 tests/runtime/fss_0002/source/test-0000-basic.fss parameter:"build_path"test/fss_0002
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0002 tests/runtime/fss_0002/source/test-0000-basic.fss parameter:"build_path"test/fss_0002
 
   print
   print Generating Test 0001 for Basic List (FSS-0002).
   print
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0002 tests/runtime/fss_0002/source/test-0001-empty_name_list.fss parameter:"build_path"test/fss_0002
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0002 tests/runtime/fss_0002/source/test-0001-empty_name_list.fss parameter:"build_path"test/fss_0002
 
   print
   print Generating Test 0002 for Basic List (FSS-0002).
   print
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0002 tests/runtime/fss_0002/source/test-0002-mixed.fss parameter:"build_path"test/fss_0002
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0002 tests/runtime/fss_0002/source/test-0002-mixed.fss parameter:"build_path"test/fss_0002
 
   print
   print Generating Test 0000 for Extended List (FSS-0003).
   print
   touch directory parameter:"build_path"test/fss_0003
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0003 tests/runtime/fss_0003/source/test-0000-basic.fss parameter:"build_path"test/fss_0003
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0003 tests/runtime/fss_0003/source/test-0000-basic.fss parameter:"build_path"test/fss_0003
 
   print
   print Generating Test 0001 for Extended List (FSS-0003).
   print
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0003 tests/runtime/fss_0003/source/test-0001-empty_name_list.fss parameter:"build_path"test/fss_0003
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0003 tests/runtime/fss_0003/source/test-0001-empty_name_list.fss parameter:"build_path"test/fss_0003
 
   print
   print Generating Test 0002 for Extended List (FSS-0003).
   print
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0003 tests/runtime/fss_0003/source/test-0002-mixed.fss parameter:"build_path"test/fss_0003
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0003 tests/runtime/fss_0003/source/test-0002-mixed.fss parameter:"build_path"test/fss_0003
 
   print
   print Generating Test 0000 for Embedded List (FSS-0008).
   print
   touch directory parameter:"build_path"test/fss_0008
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0008 tests/runtime/fss_0008/source/test-0000-basic.fss parameter:"build_path"test/fss_0008
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0008 tests/runtime/fss_0008/source/test-0000-basic.fss parameter:"build_path"test/fss_0008
 
   print
   print Generating Test 0001 for Embedded List (FSS-0008).
   print
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0008 tests/runtime/fss_0008/source/test-0001-empty_name_list.fss parameter:"build_path"test/fss_0008
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0008 tests/runtime/fss_0008/source/test-0001-empty_name_list.fss parameter:"build_path"test/fss_0008
 
   print
   print Generating Test 0008 for Embedded List (FSS-0008).
   print
-  run parameter:"script" ./tests/runtime/script/generate.sh test-0008 tests/runtime/fss_0008/source/test-0002-mixed.fss parameter:"build_path"test/fss_0008
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0008 tests/runtime/fss_0008/source/test-0002-mixed.fss parameter:"build_path"test/fss_0008
 
   print
   print Generating Test 0000 for Payload (FSS-000E).
   print
   touch directory parameter:"build_path"test/fss_000e
-  run parameter:"script" ./tests/runtime/script/generate.sh test-000e tests/runtime/fss_000e/source/test-0000-basic.fss parameter:"build_path"test/fss_000e
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"000e tests/runtime/fss_000e/source/test-0000-basic.fss parameter:"build_path"test/fss_000e
 
   print
   print Generating Test 0001 for Payload (FSS-000E).
   print
-  run parameter:"script" ./tests/runtime/script/generate.sh test-000e tests/runtime/fss_000e/source/test-0001-empty_name_list.fss parameter:"build_path"test/fss_000e
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"000e tests/runtime/fss_000e/source/test-0001-empty_name_list.fss parameter:"build_path"test/fss_000e
 
   print
   print Generating Test 0002 for Payload (FSS-000E).
   print
-  run parameter:"script" ./tests/runtime/script/generate.sh test-000e tests/runtime/fss_000e/source/test-0002-mixed.fss parameter:"build_path"test/fss_000e
+  run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"000e tests/runtime/fss_000e/source/test-0002-mixed.fss parameter:"build_path"test/fss_000e
 
-verify:
+verify_process:
   print
   print Verifying Tests for Basic (FSS-0000).
   print
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-привет.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object-name-привет.expect
new file mode 100644 (file)
index 0000000..9a900be
--- /dev/null
@@ -0,0 +1 @@
+привет has space
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0000-quotes_and_escapes-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..d0f56e1
--- /dev/null
@@ -0,0 +1 @@
+привет
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-привет.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object-name-привет.expect
new file mode 100644 (file)
index 0000000..9a900be
--- /dev/null
@@ -0,0 +1 @@
+привет has space
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0000/expect/test-0001-unicode-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0000-quotes_and_escapes-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..d0f56e1
--- /dev/null
@@ -0,0 +1 @@
+привет
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..d0f56e1
--- /dev/null
@@ -0,0 +1 @@
+привет
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0001/expect/test-0001-unicode-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..d0f56e1
--- /dev/null
@@ -0,0 +1 @@
+привет
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0000-basic-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0001-empty_name_list-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0002/expect/test-0002-mixed-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..d0f56e1
--- /dev/null
@@ -0,0 +1 @@
+привет
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0000-basic-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0001-empty_name_list-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0003/expect/test-0002-mixed-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0000-basic-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0001-empty_name_list-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_0008/expect/test-0002-mixed-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..b8626c4
--- /dev/null
@@ -0,0 +1 @@
+4
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..223e7cd
--- /dev/null
@@ -0,0 +1,4 @@
+
+This can be anything and is considered binary.
+a:
+  should not be processed.
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..b8626c4
--- /dev/null
@@ -0,0 +1 @@
+4
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-content-name-payload.expect
new file mode 100644 (file)
index 0000000..223e7cd
--- /dev/null
@@ -0,0 +1,4 @@
+
+This can be anything and is considered binary.
+a:
+  should not be processed.
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..d00491f
--- /dev/null
@@ -0,0 +1 @@
+1
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..c2981a9
--- /dev/null
@@ -0,0 +1 @@
+payload
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..d00491f
--- /dev/null
@@ -0,0 +1 @@
+1
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-payload.expect
new file mode 100644 (file)
index 0000000..c2981a9
--- /dev/null
@@ -0,0 +1 @@
+payload
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..d0f56e1
--- /dev/null
@@ -0,0 +1 @@
+привет
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..f49a668
--- /dev/null
@@ -0,0 +1,5 @@
+payload:
+
+This can be anything and is considered binary.
+a:
+  should not be processed.
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0000-basic-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..f49a668
--- /dev/null
@@ -0,0 +1,5 @@
+payload:
+
+This can be anything and is considered binary.
+a:
+  should not be processed.
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..b8626c4
--- /dev/null
@@ -0,0 +1 @@
+4
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..7ab2d61
--- /dev/null
@@ -0,0 +1,4 @@
+
+This can be anything and is considered binary.
+:
+  should not be processed.
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..b8626c4
--- /dev/null
@@ -0,0 +1 @@
+4
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-content-name-payload.expect
new file mode 100644 (file)
index 0000000..7ab2d61
--- /dev/null
@@ -0,0 +1,4 @@
+
+This can be anything and is considered binary.
+:
+  should not be processed.
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..d00491f
--- /dev/null
@@ -0,0 +1 @@
+1
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..c2981a9
--- /dev/null
@@ -0,0 +1 @@
+payload
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..d00491f
--- /dev/null
@@ -0,0 +1 @@
+1
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-payload.expect
new file mode 100644 (file)
index 0000000..c2981a9
--- /dev/null
@@ -0,0 +1 @@
+payload
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..c28bd32
--- /dev/null
@@ -0,0 +1,5 @@
+payload:
+
+This can be anything and is considered binary.
+:
+  should not be processed.
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0001-empty_name_list-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..c28bd32
--- /dev/null
@@ -0,0 +1,5 @@
+payload:
+
+This can be anything and is considered binary.
+:
+  should not be processed.
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..00750ed
--- /dev/null
@@ -0,0 +1 @@
+3
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..71314a3
--- /dev/null
@@ -0,0 +1,3 @@
+  ...
+hi:
+  Not a list.
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..00750ed
--- /dev/null
@@ -0,0 +1 @@
+3
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-content-name-payload.expect
new file mode 100644 (file)
index 0000000..71314a3
--- /dev/null
@@ -0,0 +1,3 @@
+  ...
+hi:
+  Not a list.
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..d00491f
--- /dev/null
@@ -0,0 +1 @@
+1
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..c2981a9
--- /dev/null
@@ -0,0 +1 @@
+payload
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload-total.expect
new file mode 100644 (file)
index 0000000..d00491f
--- /dev/null
@@ -0,0 +1 @@
+1
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-payload.expect
new file mode 100644 (file)
index 0000000..c2981a9
--- /dev/null
@@ -0,0 +1 @@
+payload
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-привет-select-0.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-привет-select-0.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-привет-select-1.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object-name-привет-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-select-0-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-select-0-total.expect
new file mode 100644 (file)
index 0000000..b8626c4
--- /dev/null
@@ -0,0 +1 @@
+4
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-select-0.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-select-0.expect
new file mode 100644 (file)
index 0000000..0f0a7b9
--- /dev/null
@@ -0,0 +1,4 @@
+payload:
+  ...
+hi:
+  Not a list.
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-select-1-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-select-1-total.expect
new file mode 100644 (file)
index 0000000..573541a
--- /dev/null
@@ -0,0 +1 @@
+0
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-select-1.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-select-1.expect
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-total.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload-total.expect
new file mode 100644 (file)
index 0000000..b8626c4
--- /dev/null
@@ -0,0 +1 @@
+4
diff --git a/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload.expect b/level_3/fss_read/tests/runtime/fss_000e/expect/test-0002-mixed-object_and_content-name-payload.expect
new file mode 100644 (file)
index 0000000..0f0a7b9
--- /dev/null
@@ -0,0 +1,4 @@
+payload:
+  ...
+hi:
+  Not a list.
index a1daa1e84ac4d13091e173270abb57b2f4ded681..7e1d3ce1360ac36f4c2c2fcbcd9aa26627a71cff 100644 (file)
@@ -112,17 +112,21 @@ generate_operate_0000() {
   fss_basic_read +n -ca 6 ${file_source} > ${test_current}content-at-6.expect &&
   fss_basic_read +n -ca 100 ${file_source} > ${test_current}content-at-100.expect &&
   fss_basic_read +n -cn hi ${file_source} > ${test_current}content-name-hi.expect &&
+  fss_basic_read +n -cn payload ${file_source} > ${test_current}content-name-payload.expect &&
   fss_basic_read +n -cn a ${file_source} > ${test_current}content-name-a.expect &&
   fss_basic_read +n -cn "" ${file_source} > ${test_current}content-name-.expect &&
   fss_basic_read +n -cn мир ${file_source} > ${test_current}content-name-мир.expect &&
   fss_basic_read +n -cn "привет has space" ${file_source} > ${test_current}content-name-привет_has_space.expect &&
   fss_basic_read +n -cnt hi ${file_source} > ${test_current}content-name-hi-total.expect &&
+  fss_basic_read +n -cnt payload ${file_source} > ${test_current}content-name-payload-total.expect &&
   fss_basic_read +n -cnt a ${file_source} > ${test_current}content-name-a-total.expect &&
   fss_basic_read +n -cnt "" ${file_source} > ${test_current}content-name--total.expect &&
   fss_basic_read +n -cnt мир ${file_source} > ${test_current}content-name-мир-total.expect &&
   fss_basic_read +n -cnt "привет has space" ${file_source} > ${test_current}content-name-привет_has_space-total.expect &&
   fss_basic_read +n -cns hi 0 ${file_source} > ${test_current}content-name-hi-select-0.expect &&
   fss_basic_read +n -cns hi 1 ${file_source} > ${test_current}content-name-hi-select-1.expect &&
+  fss_basic_read +n -cns payload 0 ${file_source} > ${test_current}content-name-payload-select-0.expect &&
+  fss_basic_read +n -cns payload 1 ${file_source} > ${test_current}content-name-payload-select-1.expect &&
   fss_basic_read +n -cns a 0 ${file_source} > ${test_current}content-name-a-select-0.expect &&
   fss_basic_read +n -cns a 1 ${file_source} > ${test_current}content-name-a-select-1.expect &&
   fss_basic_read +n -cns a 2 ${file_source} > ${test_current}content-name-a-select-2.expect &&
@@ -137,6 +141,8 @@ generate_operate_0000() {
   fss_basic_read +n -cns "привет has space" 1 ${file_source} > ${test_current}content-name-привет_has_space-select-1.expect &&
   fss_basic_read +n -cnst hi 0 ${file_source} > ${test_current}content-name-hi-select-0-total.expect &&
   fss_basic_read +n -cnst hi 1 ${file_source} > ${test_current}content-name-hi-select-1-total.expect &&
+  fss_basic_read +n -cnst payload 0 ${file_source} > ${test_current}content-name-payload-select-0-total.expect &&
+  fss_basic_read +n -cnst payload 1 ${file_source} > ${test_current}content-name-payload-select-1-total.expect &&
   fss_basic_read +n -cnst a 0 ${file_source} > ${test_current}content-name-a-select-0-total.expect &&
   fss_basic_read +n -cnst a 1 ${file_source} > ${test_current}content-name-a-select-1-total.expect &&
   fss_basic_read +n -cnst a 2 ${file_source} > ${test_current}content-name-a-select-2-total.expect &&
@@ -171,17 +177,21 @@ generate_operate_0000() {
   fss_basic_read +n -oa 6 ${file_source} > ${test_current}object-at-6.expect &&
   fss_basic_read +n -oa 100 ${file_source} > ${test_current}object-at-100.expect &&
   fss_basic_read +n -on hi ${file_source} > ${test_current}object-name-hi.expect &&
+  fss_basic_read +n -on payload ${file_source} > ${test_current}object-name-payload.expect &&
   fss_basic_read +n -on "" ${file_source} > ${test_current}object-name-.expect &&
   fss_basic_read +n -on мир ${file_source} > ${test_current}object-name-мир.expect &&
   fss_basic_read +n -on "привет has space" ${file_source} > ${test_current}object-name-привет.expect &&
   fss_basic_read +n -on a ${file_source} > ${test_current}object-name-a.expect &&
   fss_basic_read +n -ont hi ${file_source} > ${test_current}object-name-hi-total.expect &&
+  fss_basic_read +n -ont payload ${file_source} > ${test_current}object-name-payload-total.expect &&
   fss_basic_read +n -ont a ${file_source} > ${test_current}object-name-a-total.expect &&
   fss_basic_read +n -ont "" ${file_source} > ${test_current}object-name--total.expect &&
   fss_basic_read +n -ont мир ${file_source} > ${test_current}object-name-мир-total.expect &&
   fss_basic_read +n -ont "привет has space" ${file_source} > ${test_current}object-name-привет_has_space-total.expect &&
   fss_basic_read +n -ons hi 0 ${file_source} > ${test_current}object-name-hi-select-0.expect &&
   fss_basic_read +n -ons hi 1 ${file_source} > ${test_current}object-name-hi-select-1.expect &&
+  fss_basic_read +n -ons payload 0 ${file_source} > ${test_current}object-name-payload-select-0.expect &&
+  fss_basic_read +n -ons payload 1 ${file_source} > ${test_current}object-name-payload-select-1.expect &&
   fss_basic_read +n -ons a 0 ${file_source} > ${test_current}object-name-a-select-0.expect &&
   fss_basic_read +n -ons a 1 ${file_source} > ${test_current}object-name-a-select-1.expect &&
   fss_basic_read +n -ons a 2 ${file_source} > ${test_current}object-name-a-select-2.expect &&
@@ -196,6 +206,8 @@ generate_operate_0000() {
   fss_basic_read +n -ons привет 1 ${file_source} > ${test_current}object-name-привет-select-1.expect &&
   fss_basic_read +n -onst hi 0 ${file_source} > ${test_current}object-name-hi-select-0-total.expect &&
   fss_basic_read +n -onst hi 1 ${file_source} > ${test_current}object-name-hi-select-1-total.expect &&
+  fss_basic_read +n -onst payload 0 ${file_source} > ${test_current}object-name-payload-select-0-total.expect &&
+  fss_basic_read +n -onst payload 1 ${file_source} > ${test_current}object-name-payload-select-1-total.expect &&
   fss_basic_read +n -onst a 0 ${file_source} > ${test_current}object-name-a-select-0-total.expect &&
   fss_basic_read +n -onst a 1 ${file_source} > ${test_current}object-name-a-select-1-total.expect &&
   fss_basic_read +n -onst a 2 ${file_source} > ${test_current}object-name-a-select-2-total.expect &&
@@ -230,17 +242,21 @@ generate_operate_0000() {
   fss_basic_read +n -oca 6 ${file_source} > ${test_current}object_and_content-at-6.expect &&
   fss_basic_read +n -oca 100 ${file_source} > ${test_current}object_and_content-at-100.expect &&
   fss_basic_read +n -ocn hi ${file_source} > ${test_current}object_and_content-name-hi.expect &&
+  fss_basic_read +n -ocn payload ${file_source} > ${test_current}object_and_content-name-payload.expect &&
   fss_basic_read +n -ocn a ${file_source} > ${test_current}object_and_content-name-a.expect &&
   fss_basic_read +n -ocn "" ${file_source} > ${test_current}object_and_content-name-.expect &&
   fss_basic_read +n -ocn мир ${file_source} > ${test_current}object_and_content-name-мир.expect &&
   fss_basic_read +n -ocn привет ${file_source} > ${test_current}object_and_content-name-привет.expect &&
   fss_basic_read +n -ocnt hi ${file_source} > ${test_current}object_and_content-name-hi-total.expect &&
+  fss_basic_read +n -ocnt payload ${file_source} > ${test_current}object_and_content-name-payload-total.expect &&
   fss_basic_read +n -ocnt a ${file_source} > ${test_current}object_and_content-name-a-total.expect &&
   fss_basic_read +n -ocnt "" ${file_source} > ${test_current}object_and_content-name--total.expect &&
   fss_basic_read +n -ocnt мир ${file_source} > ${test_current}object_and_content-name-мир-total.expect &&
   fss_basic_read +n -ocnt "привет has space" ${file_source} > ${test_current}object_and_content-name-привет_has_space-total.expect &&
   fss_basic_read +n -ocns hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0.expect &&
   fss_basic_read +n -ocns hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1.expect &&
+  fss_basic_read +n -ocns payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0.expect &&
+  fss_basic_read +n -ocns payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1.expect &&
   fss_basic_read +n -ocns a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0.expect &&
   fss_basic_read +n -ocns a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1.expect &&
   fss_basic_read +n -ocns a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2.expect &&
@@ -255,6 +271,8 @@ generate_operate_0000() {
   fss_basic_read +n -ocns "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1.expect &&
   fss_basic_read +n -ocnst hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0-total.expect &&
   fss_basic_read +n -ocnst hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1-total.expect &&
+  fss_basic_read +n -ocnst payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0-total.expect &&
+  fss_basic_read +n -ocnst payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1-total.expect &&
   fss_basic_read +n -ocnst a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0-total.expect &&
   fss_basic_read +n -ocnst a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1-total.expect &&
   fss_basic_read +n -ocnst a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2-total.expect &&
@@ -300,17 +318,21 @@ generate_operate_0001() {
   fss_extended_read +n -ca 6 ${file_source} > ${test_current}content-at-6.expect &&
   fss_extended_read +n -ca 100 ${file_source} > ${test_current}content-at-100.expect &&
   fss_extended_read +n -cn hi ${file_source} > ${test_current}content-name-hi.expect &&
+  fss_extended_read +n -cn payload ${file_source} > ${test_current}content-name-payload.expect &&
   fss_extended_read +n -cn a ${file_source} > ${test_current}content-name-a.expect &&
   fss_extended_read +n -cn "" ${file_source} > ${test_current}content-name-.expect &&
   fss_extended_read +n -cn мир ${file_source} > ${test_current}content-name-мир.expect &&
   fss_extended_read +n -cn "привет has space" ${file_source} > ${test_current}content-name-привет_has_space.expect &&
   fss_extended_read +n -cnt hi ${file_source} > ${test_current}content-name-hi-total.expect &&
+  fss_extended_read +n -cnt payload ${file_source} > ${test_current}content-name-payload-total.expect &&
   fss_extended_read +n -cnt a ${file_source} > ${test_current}content-name-a-total.expect &&
   fss_extended_read +n -cnt "" ${file_source} > ${test_current}content-name--total.expect &&
   fss_extended_read +n -cnt мир ${file_source} > ${test_current}content-name-мир-total.expect &&
   fss_extended_read +n -cnt "привет has space" ${file_source} > ${test_current}content-name-привет_has_space-total.expect &&
   fss_extended_read +n -cns hi 0 ${file_source} > ${test_current}content-name-hi-select-0.expect &&
   fss_extended_read +n -cns hi 1 ${file_source} > ${test_current}content-name-hi-select-1.expect &&
+  fss_extended_read +n -cns payload 0 ${file_source} > ${test_current}content-name-payload-select-0.expect &&
+  fss_extended_read +n -cns payload 1 ${file_source} > ${test_current}content-name-payload-select-1.expect &&
   fss_extended_read +n -cns a 0 ${file_source} > ${test_current}content-name-a-select-0.expect &&
   fss_extended_read +n -cns a 1 ${file_source} > ${test_current}content-name-a-select-1.expect &&
   fss_extended_read +n -cns a 2 ${file_source} > ${test_current}content-name-a-select-2.expect &&
@@ -325,6 +347,8 @@ generate_operate_0001() {
   fss_extended_read +n -cns "привет has space" 1 ${file_source} > ${test_current}content-name-привет_has_space-select-1.expect &&
   fss_extended_read +n -cnst hi 0 ${file_source} > ${test_current}content-name-hi-select-0-total.expect &&
   fss_extended_read +n -cnst hi 1 ${file_source} > ${test_current}content-name-hi-select-1-total.expect &&
+  fss_extended_read +n -cnst payload 0 ${file_source} > ${test_current}content-name-payload-select-0-total.expect &&
+  fss_extended_read +n -cnst payload 1 ${file_source} > ${test_current}content-name-payload-select-1-total.expect &&
   fss_extended_read +n -cnst a 0 ${file_source} > ${test_current}content-name-a-select-0-total.expect &&
   fss_extended_read +n -cnst a 1 ${file_source} > ${test_current}content-name-a-select-1-total.expect &&
   fss_extended_read +n -cnst a 2 ${file_source} > ${test_current}content-name-a-select-2-total.expect &&
@@ -359,17 +383,21 @@ generate_operate_0001() {
   fss_extended_read +n -oa 6 ${file_source} > ${test_current}object-at-6.expect &&
   fss_extended_read +n -oa 100 ${file_source} > ${test_current}object-at-100.expect &&
   fss_extended_read +n -on hi ${file_source} > ${test_current}object-name-hi.expect &&
+  fss_extended_read +n -on payload ${file_source} > ${test_current}object-name-payload.expect &&
   fss_extended_read +n -on "" ${file_source} > ${test_current}object-name-.expect &&
   fss_extended_read +n -on мир ${file_source} > ${test_current}object-name-мир.expect &&
   fss_extended_read +n -on "привет has space" ${file_source} > ${test_current}object-name-привет_has_space.expect &&
   fss_extended_read +n -on a ${file_source} > ${test_current}object-name-a.expect &&
   fss_extended_read +n -ont hi ${file_source} > ${test_current}object-name-hi-total.expect &&
+  fss_extended_read +n -ont payload ${file_source} > ${test_current}object-name-payload-total.expect &&
   fss_extended_read +n -ont a ${file_source} > ${test_current}object-name-a-total.expect &&
   fss_extended_read +n -ont "" ${file_source} > ${test_current}object-name--total.expect &&
   fss_extended_read +n -ont мир ${file_source} > ${test_current}object-name-мир-total.expect &&
   fss_extended_read +n -ont "привет has space" ${file_source} > ${test_current}object-name-привет_has_space-total.expect &&
   fss_extended_read +n -ons hi 0 ${file_source} > ${test_current}object-name-hi-select-0.expect &&
   fss_extended_read +n -ons hi 1 ${file_source} > ${test_current}object-name-hi-select-1.expect &&
+  fss_extended_read +n -ons payload 0 ${file_source} > ${test_current}object-name-payload-select-0.expect &&
+  fss_extended_read +n -ons payload 1 ${file_source} > ${test_current}object-name-payload-select-1.expect &&
   fss_extended_read +n -ons a 0 ${file_source} > ${test_current}object-name-a-select-0.expect &&
   fss_extended_read +n -ons a 1 ${file_source} > ${test_current}object-name-a-select-1.expect &&
   fss_extended_read +n -ons a 2 ${file_source} > ${test_current}object-name-a-select-2.expect &&
@@ -384,6 +412,8 @@ generate_operate_0001() {
   fss_extended_read +n -ons привет 1 ${file_source} > ${test_current}object-name-привет-select-1.expect &&
   fss_extended_read +n -onst hi 0 ${file_source} > ${test_current}object-name-hi-select-0-total.expect &&
   fss_extended_read +n -onst hi 1 ${file_source} > ${test_current}object-name-hi-select-1-total.expect &&
+  fss_extended_read +n -onst payload 0 ${file_source} > ${test_current}object-name-payload-select-0-total.expect &&
+  fss_extended_read +n -onst payload 1 ${file_source} > ${test_current}object-name-payload-select-1-total.expect &&
   fss_extended_read +n -onst a 0 ${file_source} > ${test_current}object-name-a-select-0-total.expect &&
   fss_extended_read +n -onst a 1 ${file_source} > ${test_current}object-name-a-select-1-total.expect &&
   fss_extended_read +n -onst a 2 ${file_source} > ${test_current}object-name-a-select-2-total.expect &&
@@ -418,17 +448,21 @@ generate_operate_0001() {
   fss_extended_read +n -oca 6 ${file_source} > ${test_current}object_and_content-at-6.expect &&
   fss_extended_read +n -oca 100 ${file_source} > ${test_current}object_and_content-at-100.expect &&
   fss_extended_read +n -ocn hi ${file_source} > ${test_current}object_and_content-name-hi.expect &&
+  fss_extended_read +n -ocn payload ${file_source} > ${test_current}object_and_content-name-payload.expect &&
   fss_extended_read +n -ocn a ${file_source} > ${test_current}object_and_content-name-a.expect &&
   fss_extended_read +n -ocn "" ${file_source} > ${test_current}object_and_content-name-.expect &&
   fss_extended_read +n -ocn мир ${file_source} > ${test_current}object_and_content-name-мир.expect &&
   fss_extended_read +n -ocn привет ${file_source} > ${test_current}object_and_content-name-привет.expect &&
   fss_extended_read +n -ocnt hi ${file_source} > ${test_current}object_and_content-name-hi-total.expect &&
+  fss_extended_read +n -ocnt payload ${file_source} > ${test_current}object_and_content-name-payload-total.expect &&
   fss_extended_read +n -ocnt a ${file_source} > ${test_current}object_and_content-name-a-total.expect &&
   fss_extended_read +n -ocnt "" ${file_source} > ${test_current}object_and_content-name--total.expect &&
   fss_extended_read +n -ocnt мир ${file_source} > ${test_current}object_and_content-name-мир-total.expect &&
   fss_extended_read +n -ocnt "привет has space" ${file_source} > ${test_current}object_and_content-name-привет_has_space-total.expect &&
   fss_extended_read +n -ocns hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0.expect &&
   fss_extended_read +n -ocns hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1.expect &&
+  fss_extended_read +n -ocns payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0.expect &&
+  fss_extended_read +n -ocns payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1.expect &&
   fss_extended_read +n -ocns a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0.expect &&
   fss_extended_read +n -ocns a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1.expect &&
   fss_extended_read +n -ocns a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2.expect &&
@@ -443,6 +477,8 @@ generate_operate_0001() {
   fss_extended_read +n -ocns "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1.expect &&
   fss_extended_read +n -ocnst hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0-total.expect &&
   fss_extended_read +n -ocnst hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1-total.expect &&
+  fss_extended_read +n -ocnst payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0-total.expect &&
+  fss_extended_read +n -ocnst payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1-total.expect &&
   fss_extended_read +n -ocnst a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0-total.expect &&
   fss_extended_read +n -ocnst a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1-total.expect &&
   fss_extended_read +n -ocnst a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2-total.expect &&
@@ -488,17 +524,21 @@ generate_operate_0002() {
   fss_basic_list_read +n -ca 6 ${file_source} > ${test_current}content-at-6.expect &&
   fss_basic_list_read +n -ca 100 ${file_source} > ${test_current}content-at-100.expect &&
   fss_basic_list_read +n -cn hi ${file_source} > ${test_current}content-name-hi.expect &&
+  fss_basic_list_read +n -cn payload ${file_source} > ${test_current}content-name-payload.expect &&
   fss_basic_list_read +n -cn a ${file_source} > ${test_current}content-name-a.expect &&
   fss_basic_list_read +n -cn "" ${file_source} > ${test_current}content-name-.expect &&
   fss_basic_list_read +n -cn мир ${file_source} > ${test_current}content-name-мир.expect &&
   fss_basic_list_read +n -cn "привет has space" ${file_source} > ${test_current}content-name-привет_has_space.expect &&
   fss_basic_list_read +n -cnt hi ${file_source} > ${test_current}content-name-hi-total.expect &&
+  fss_basic_list_read +n -cnt payload ${file_source} > ${test_current}content-name-payload-total.expect &&
   fss_basic_list_read +n -cnt a ${file_source} > ${test_current}content-name-a-total.expect &&
   fss_basic_list_read +n -cnt "" ${file_source} > ${test_current}content-name--total.expect &&
   fss_basic_list_read +n -cnt мир ${file_source} > ${test_current}content-name-мир-total.expect &&
   fss_basic_list_read +n -cnt "привет has space" ${file_source} > ${test_current}content-name-привет_has_space-total.expect &&
   fss_basic_list_read +n -cns hi 0 ${file_source} > ${test_current}content-name-hi-select-0.expect &&
   fss_basic_list_read +n -cns hi 1 ${file_source} > ${test_current}content-name-hi-select-1.expect &&
+  fss_basic_list_read +n -cns payload 0 ${file_source} > ${test_current}content-name-payload-select-0.expect &&
+  fss_basic_list_read +n -cns payload 1 ${file_source} > ${test_current}content-name-payload-select-1.expect &&
   fss_basic_list_read +n -cns a 0 ${file_source} > ${test_current}content-name-a-select-0.expect &&
   fss_basic_list_read +n -cns a 1 ${file_source} > ${test_current}content-name-a-select-1.expect &&
   fss_basic_list_read +n -cns a 2 ${file_source} > ${test_current}content-name-a-select-2.expect &&
@@ -513,6 +553,8 @@ generate_operate_0002() {
   fss_basic_list_read +n -cns "привет has space" 1 ${file_source} > ${test_current}content-name-привет_has_space-select-1.expect &&
   fss_basic_list_read +n -cnst hi 0 ${file_source} > ${test_current}content-name-hi-select-0-total.expect &&
   fss_basic_list_read +n -cnst hi 1 ${file_source} > ${test_current}content-name-hi-select-1-total.expect &&
+  fss_basic_list_read +n -cnst payload 0 ${file_source} > ${test_current}content-name-payload-select-0-total.expect &&
+  fss_basic_list_read +n -cnst payload 1 ${file_source} > ${test_current}content-name-payload-select-1-total.expect &&
   fss_basic_list_read +n -cnst a 0 ${file_source} > ${test_current}content-name-a-select-0-total.expect &&
   fss_basic_list_read +n -cnst a 1 ${file_source} > ${test_current}content-name-a-select-1-total.expect &&
   fss_basic_list_read +n -cnst a 2 ${file_source} > ${test_current}content-name-a-select-2-total.expect &&
@@ -547,17 +589,21 @@ generate_operate_0002() {
   fss_basic_list_read +n -oa 6 ${file_source} > ${test_current}object-at-6.expect &&
   fss_basic_list_read +n -oa 100 ${file_source} > ${test_current}object-at-100.expect &&
   fss_basic_list_read +n -on hi ${file_source} > ${test_current}object-name-hi.expect &&
+  fss_basic_list_read +n -on payload ${file_source} > ${test_current}object-name-payload.expect &&
   fss_basic_list_read +n -on "" ${file_source} > ${test_current}object-name-.expect &&
   fss_basic_list_read +n -on мир ${file_source} > ${test_current}object-name-мир.expect &&
   fss_basic_list_read +n -on "привет has space" ${file_source} > ${test_current}object-name-привет_has_space.expect &&
   fss_basic_list_read +n -on a ${file_source} > ${test_current}object-name-a.expect &&
   fss_basic_list_read +n -ont hi ${file_source} > ${test_current}object-name-hi-total.expect &&
+  fss_basic_list_read +n -ont payload ${file_source} > ${test_current}object-name-payload-total.expect &&
   fss_basic_list_read +n -ont a ${file_source} > ${test_current}object-name-a-total.expect &&
   fss_basic_list_read +n -ont "" ${file_source} > ${test_current}object-name--total.expect &&
   fss_basic_list_read +n -ont мир ${file_source} > ${test_current}object-name-мир-total.expect &&
   fss_basic_list_read +n -ont "привет has space" ${file_source} > ${test_current}object-name-привет_has_space-total.expect &&
   fss_basic_list_read +n -ons hi 0 ${file_source} > ${test_current}object-name-hi-select-0.expect &&
   fss_basic_list_read +n -ons hi 1 ${file_source} > ${test_current}object-name-hi-select-1.expect &&
+  fss_basic_list_read +n -ons payload 0 ${file_source} > ${test_current}object-name-payload-select-0.expect &&
+  fss_basic_list_read +n -ons payload 1 ${file_source} > ${test_current}object-name-payload-select-1.expect &&
   fss_basic_list_read +n -ons a 0 ${file_source} > ${test_current}object-name-a-select-0.expect &&
   fss_basic_list_read +n -ons a 1 ${file_source} > ${test_current}object-name-a-select-1.expect &&
   fss_basic_list_read +n -ons a 2 ${file_source} > ${test_current}object-name-a-select-2.expect &&
@@ -572,6 +618,8 @@ generate_operate_0002() {
   fss_basic_list_read +n -ons привет 1 ${file_source} > ${test_current}object-name-привет-select-1.expect &&
   fss_basic_list_read +n -onst hi 0 ${file_source} > ${test_current}object-name-hi-select-0-total.expect &&
   fss_basic_list_read +n -onst hi 1 ${file_source} > ${test_current}object-name-hi-select-1-total.expect &&
+  fss_basic_list_read +n -onst payload 0 ${file_source} > ${test_current}object-name-payload-select-0-total.expect &&
+  fss_basic_list_read +n -onst payload 1 ${file_source} > ${test_current}object-name-payload-select-1-total.expect &&
   fss_basic_list_read +n -onst a 0 ${file_source} > ${test_current}object-name-a-select-0-total.expect &&
   fss_basic_list_read +n -onst a 1 ${file_source} > ${test_current}object-name-a-select-1-total.expect &&
   fss_basic_list_read +n -onst a 2 ${file_source} > ${test_current}object-name-a-select-2-total.expect &&
@@ -606,17 +654,21 @@ generate_operate_0002() {
   fss_basic_list_read +n -oca 6 ${file_source} > ${test_current}object_and_content-at-6.expect &&
   fss_basic_list_read +n -oca 100 ${file_source} > ${test_current}object_and_content-at-100.expect &&
   fss_basic_list_read +n -ocn hi ${file_source} > ${test_current}object_and_content-name-hi.expect &&
+  fss_basic_list_read +n -ocn payload ${file_source} > ${test_current}object_and_content-name-payload.expect &&
   fss_basic_list_read +n -ocn a ${file_source} > ${test_current}object_and_content-name-a.expect &&
   fss_basic_list_read +n -ocn "" ${file_source} > ${test_current}object_and_content-name-.expect &&
   fss_basic_list_read +n -ocn мир ${file_source} > ${test_current}object_and_content-name-мир.expect &&
   fss_basic_list_read +n -ocn привет ${file_source} > ${test_current}object_and_content-name-привет.expect &&
   fss_basic_list_read +n -ocnt hi ${file_source} > ${test_current}object_and_content-name-hi-total.expect &&
+  fss_basic_list_read +n -ocnt payload ${file_source} > ${test_current}object_and_content-name-payload-total.expect &&
   fss_basic_list_read +n -ocnt a ${file_source} > ${test_current}object_and_content-name-a-total.expect &&
   fss_basic_list_read +n -ocnt "" ${file_source} > ${test_current}object_and_content-name--total.expect &&
   fss_basic_list_read +n -ocnt мир ${file_source} > ${test_current}object_and_content-name-мир-total.expect &&
   fss_basic_list_read +n -ocnt "привет has space" ${file_source} > ${test_current}object_and_content-name-привет_has_space-total.expect &&
   fss_basic_list_read +n -ocns hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0.expect &&
   fss_basic_list_read +n -ocns hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1.expect &&
+  fss_basic_list_read +n -ocns payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0.expect &&
+  fss_basic_list_read +n -ocns payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1.expect &&
   fss_basic_list_read +n -ocns a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0.expect &&
   fss_basic_list_read +n -ocns a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1.expect &&
   fss_basic_list_read +n -ocns a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2.expect &&
@@ -631,6 +683,8 @@ generate_operate_0002() {
   fss_basic_list_read +n -ocns "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1.expect &&
   fss_basic_list_read +n -ocnst hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0-total.expect &&
   fss_basic_list_read +n -ocnst hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1-total.expect &&
+  fss_basic_list_read +n -ocnst payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0-total.expect &&
+  fss_basic_list_read +n -ocnst payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1-total.expect &&
   fss_basic_list_read +n -ocnst a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0-total.expect &&
   fss_basic_list_read +n -ocnst a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1-total.expect &&
   fss_basic_list_read +n -ocnst a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2-total.expect &&
@@ -676,17 +730,21 @@ generate_operate_0003() {
   fss_extended_list_read +n -ca 6 ${file_source} > ${test_current}content-at-6.expect &&
   fss_extended_list_read +n -ca 100 ${file_source} > ${test_current}content-at-100.expect &&
   fss_extended_list_read +n -cn hi ${file_source} > ${test_current}content-name-hi.expect &&
+  fss_extended_list_read +n -cn payload ${file_source} > ${test_current}content-name-payload.expect &&
   fss_extended_list_read +n -cn a ${file_source} > ${test_current}content-name-a.expect &&
   fss_extended_list_read +n -cn "" ${file_source} > ${test_current}content-name-.expect &&
   fss_extended_list_read +n -cn мир ${file_source} > ${test_current}content-name-мир.expect &&
   fss_extended_list_read +n -cn "привет has space" ${file_source} > ${test_current}content-name-привет_has_space.expect &&
   fss_extended_list_read +n -cnt hi ${file_source} > ${test_current}content-name-hi-total.expect &&
+  fss_extended_list_read +n -cnt payload ${file_source} > ${test_current}content-name-payload-total.expect &&
   fss_extended_list_read +n -cnt a ${file_source} > ${test_current}content-name-a-total.expect &&
   fss_extended_list_read +n -cnt "" ${file_source} > ${test_current}content-name--total.expect &&
   fss_extended_list_read +n -cnt мир ${file_source} > ${test_current}content-name-мир-total.expect &&
   fss_extended_list_read +n -cnt "привет has space" ${file_source} > ${test_current}content-name-привет_has_space-total.expect &&
   fss_extended_list_read +n -cns hi 0 ${file_source} > ${test_current}content-name-hi-select-0.expect &&
   fss_extended_list_read +n -cns hi 1 ${file_source} > ${test_current}content-name-hi-select-1.expect &&
+  fss_extended_list_read +n -cns payload 0 ${file_source} > ${test_current}content-name-payload-select-0.expect &&
+  fss_extended_list_read +n -cns payload 1 ${file_source} > ${test_current}content-name-payload-select-1.expect &&
   fss_extended_list_read +n -cns a 0 ${file_source} > ${test_current}content-name-a-select-0.expect &&
   fss_extended_list_read +n -cns a 1 ${file_source} > ${test_current}content-name-a-select-1.expect &&
   fss_extended_list_read +n -cns a 2 ${file_source} > ${test_current}content-name-a-select-2.expect &&
@@ -701,6 +759,8 @@ generate_operate_0003() {
   fss_extended_list_read +n -cns "привет has space" 1 ${file_source} > ${test_current}content-name-привет_has_space-select-1.expect &&
   fss_extended_list_read +n -cnst hi 0 ${file_source} > ${test_current}content-name-hi-select-0-total.expect &&
   fss_extended_list_read +n -cnst hi 1 ${file_source} > ${test_current}content-name-hi-select-1-total.expect &&
+  fss_extended_list_read +n -cnst payload 0 ${file_source} > ${test_current}content-name-payload-select-0-total.expect &&
+  fss_extended_list_read +n -cnst payload 1 ${file_source} > ${test_current}content-name-payload-select-1-total.expect &&
   fss_extended_list_read +n -cnst a 0 ${file_source} > ${test_current}content-name-a-select-0-total.expect &&
   fss_extended_list_read +n -cnst a 1 ${file_source} > ${test_current}content-name-a-select-1-total.expect &&
   fss_extended_list_read +n -cnst a 2 ${file_source} > ${test_current}content-name-a-select-2-total.expect &&
@@ -735,17 +795,21 @@ generate_operate_0003() {
   fss_extended_list_read +n -oa 6 ${file_source} > ${test_current}object-at-6.expect &&
   fss_extended_list_read +n -oa 100 ${file_source} > ${test_current}object-at-100.expect &&
   fss_extended_list_read +n -on hi ${file_source} > ${test_current}object-name-hi.expect &&
+  fss_extended_list_read +n -on payload ${file_source} > ${test_current}object-name-payload.expect &&
   fss_extended_list_read +n -on "" ${file_source} > ${test_current}object-name-.expect &&
   fss_extended_list_read +n -on мир ${file_source} > ${test_current}object-name-мир.expect &&
   fss_extended_list_read +n -on "привет has space" ${file_source} > ${test_current}object-name-привет_has_space.expect &&
   fss_extended_list_read +n -on a ${file_source} > ${test_current}object-name-a.expect &&
   fss_extended_list_read +n -ont hi ${file_source} > ${test_current}object-name-hi-total.expect &&
+  fss_extended_list_read +n -ont payload ${file_source} > ${test_current}object-name-payload-total.expect &&
   fss_extended_list_read +n -ont a ${file_source} > ${test_current}object-name-a-total.expect &&
   fss_extended_list_read +n -ont "" ${file_source} > ${test_current}object-name--total.expect &&
   fss_extended_list_read +n -ont мир ${file_source} > ${test_current}object-name-мир-total.expect &&
   fss_extended_list_read +n -ont "привет has space" ${file_source} > ${test_current}object-name-привет_has_space-total.expect &&
   fss_extended_list_read +n -ons hi 0 ${file_source} > ${test_current}object-name-hi-select-0.expect &&
   fss_extended_list_read +n -ons hi 1 ${file_source} > ${test_current}object-name-hi-select-1.expect &&
+  fss_extended_list_read +n -ons payload 0 ${file_source} > ${test_current}object-name-payload-select-0.expect &&
+  fss_extended_list_read +n -ons payload 1 ${file_source} > ${test_current}object-name-payload-select-1.expect &&
   fss_extended_list_read +n -ons a 0 ${file_source} > ${test_current}object-name-a-select-0.expect &&
   fss_extended_list_read +n -ons a 1 ${file_source} > ${test_current}object-name-a-select-1.expect &&
   fss_extended_list_read +n -ons a 2 ${file_source} > ${test_current}object-name-a-select-2.expect &&
@@ -760,6 +824,8 @@ generate_operate_0003() {
   fss_extended_list_read +n -ons привет 1 ${file_source} > ${test_current}object-name-привет-select-1.expect &&
   fss_extended_list_read +n -onst hi 0 ${file_source} > ${test_current}object-name-hi-select-0-total.expect &&
   fss_extended_list_read +n -onst hi 1 ${file_source} > ${test_current}object-name-hi-select-1-total.expect &&
+  fss_extended_list_read +n -onst payload 0 ${file_source} > ${test_current}object-name-payload-select-0-total.expect &&
+  fss_extended_list_read +n -onst payload 1 ${file_source} > ${test_current}object-name-payload-select-1-total.expect &&
   fss_extended_list_read +n -onst a 0 ${file_source} > ${test_current}object-name-a-select-0-total.expect &&
   fss_extended_list_read +n -onst a 1 ${file_source} > ${test_current}object-name-a-select-1-total.expect &&
   fss_extended_list_read +n -onst a 2 ${file_source} > ${test_current}object-name-a-select-2-total.expect &&
@@ -794,17 +860,21 @@ generate_operate_0003() {
   fss_extended_list_read +n -oca 6 ${file_source} > ${test_current}object_and_content-at-6.expect &&
   fss_extended_list_read +n -oca 100 ${file_source} > ${test_current}object_and_content-at-100.expect &&
   fss_extended_list_read +n -ocn hi ${file_source} > ${test_current}object_and_content-name-hi.expect &&
+  fss_extended_list_read +n -ocn payload ${file_source} > ${test_current}object_and_content-name-payload.expect &&
   fss_extended_list_read +n -ocn a ${file_source} > ${test_current}object_and_content-name-a.expect &&
   fss_extended_list_read +n -ocn "" ${file_source} > ${test_current}object_and_content-name-.expect &&
   fss_extended_list_read +n -ocn мир ${file_source} > ${test_current}object_and_content-name-мир.expect &&
   fss_extended_list_read +n -ocn привет ${file_source} > ${test_current}object_and_content-name-привет.expect &&
   fss_extended_list_read +n -ocnt hi ${file_source} > ${test_current}object_and_content-name-hi-total.expect &&
+  fss_extended_list_read +n -ocnt payload ${file_source} > ${test_current}object_and_content-name-payload-total.expect &&
   fss_extended_list_read +n -ocnt a ${file_source} > ${test_current}object_and_content-name-a-total.expect &&
   fss_extended_list_read +n -ocnt "" ${file_source} > ${test_current}object_and_content-name--total.expect &&
   fss_extended_list_read +n -ocnt мир ${file_source} > ${test_current}object_and_content-name-мир-total.expect &&
   fss_extended_list_read +n -ocnt "привет has space" ${file_source} > ${test_current}object_and_content-name-привет_has_space-total.expect &&
   fss_extended_list_read +n -ocns hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0.expect &&
   fss_extended_list_read +n -ocns hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1.expect &&
+  fss_extended_list_read +n -ocns payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0.expect &&
+  fss_extended_list_read +n -ocns payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1.expect &&
   fss_extended_list_read +n -ocns a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0.expect &&
   fss_extended_list_read +n -ocns a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1.expect &&
   fss_extended_list_read +n -ocns a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2.expect &&
@@ -819,6 +889,8 @@ generate_operate_0003() {
   fss_extended_list_read +n -ocns "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1.expect &&
   fss_extended_list_read +n -ocnst hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0-total.expect &&
   fss_extended_list_read +n -ocnst hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1-total.expect &&
+  fss_extended_list_read +n -ocnst payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0-total.expect &&
+  fss_extended_list_read +n -ocnst payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1-total.expect &&
   fss_extended_list_read +n -ocnst a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0-total.expect &&
   fss_extended_list_read +n -ocnst a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1-total.expect &&
   fss_extended_list_read +n -ocnst a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2-total.expect &&
@@ -864,17 +936,21 @@ generate_operate_0008() {
   fss_embedded_list_read +n -ca 6 ${file_source} > ${test_current}content-at-6.expect &&
   fss_embedded_list_read +n -ca 100 ${file_source} > ${test_current}content-at-100.expect &&
   fss_embedded_list_read +n -cn hi ${file_source} > ${test_current}content-name-hi.expect &&
+  fss_embedded_list_read +n -cn payload ${file_source} > ${test_current}content-name-payload.expect &&
   fss_embedded_list_read +n -cn a ${file_source} > ${test_current}content-name-a.expect &&
   fss_embedded_list_read +n -cn "" ${file_source} > ${test_current}content-name-.expect &&
   fss_embedded_list_read +n -cn мир ${file_source} > ${test_current}content-name-мир.expect &&
   fss_embedded_list_read +n -cn "привет has space" ${file_source} > ${test_current}content-name-привет_has_space.expect &&
   fss_embedded_list_read +n -cnt hi ${file_source} > ${test_current}content-name-hi-total.expect &&
+  fss_embedded_list_read +n -cnt payload ${file_source} > ${test_current}content-name-payload-total.expect &&
   fss_embedded_list_read +n -cnt a ${file_source} > ${test_current}content-name-a-total.expect &&
   fss_embedded_list_read +n -cnt "" ${file_source} > ${test_current}content-name--total.expect &&
   fss_embedded_list_read +n -cnt мир ${file_source} > ${test_current}content-name-мир-total.expect &&
   fss_embedded_list_read +n -cnt "привет has space" ${file_source} > ${test_current}content-name-привет_has_space-total.expect &&
   fss_embedded_list_read +n -cns hi 0 ${file_source} > ${test_current}content-name-hi-select-0.expect &&
   fss_embedded_list_read +n -cns hi 1 ${file_source} > ${test_current}content-name-hi-select-1.expect &&
+  fss_embedded_list_read +n -cns payload 0 ${file_source} > ${test_current}content-name-payload-select-0.expect &&
+  fss_embedded_list_read +n -cns payload 1 ${file_source} > ${test_current}content-name-payload-select-1.expect &&
   fss_embedded_list_read +n -cns a 0 ${file_source} > ${test_current}content-name-a-select-0.expect &&
   fss_embedded_list_read +n -cns a 1 ${file_source} > ${test_current}content-name-a-select-1.expect &&
   fss_embedded_list_read +n -cns a 2 ${file_source} > ${test_current}content-name-a-select-2.expect &&
@@ -889,6 +965,8 @@ generate_operate_0008() {
   fss_embedded_list_read +n -cns "привет has space" 1 ${file_source} > ${test_current}content-name-привет_has_space-select-1.expect &&
   fss_embedded_list_read +n -cnst hi 0 ${file_source} > ${test_current}content-name-hi-select-0-total.expect &&
   fss_embedded_list_read +n -cnst hi 1 ${file_source} > ${test_current}content-name-hi-select-1-total.expect &&
+  fss_embedded_list_read +n -cnst payload 0 ${file_source} > ${test_current}content-name-payload-select-0-total.expect &&
+  fss_embedded_list_read +n -cnst payload 1 ${file_source} > ${test_current}content-name-payload-select-1-total.expect &&
   fss_embedded_list_read +n -cnst a 0 ${file_source} > ${test_current}content-name-a-select-0-total.expect &&
   fss_embedded_list_read +n -cnst a 1 ${file_source} > ${test_current}content-name-a-select-1-total.expect &&
   fss_embedded_list_read +n -cnst a 2 ${file_source} > ${test_current}content-name-a-select-2-total.expect &&
@@ -923,17 +1001,21 @@ generate_operate_0008() {
   fss_embedded_list_read +n -oa 6 ${file_source} > ${test_current}object-at-6.expect &&
   fss_embedded_list_read +n -oa 100 ${file_source} > ${test_current}object-at-100.expect &&
   fss_embedded_list_read +n -on hi ${file_source} > ${test_current}object-name-hi.expect &&
+  fss_embedded_list_read +n -on payload ${file_source} > ${test_current}object-name-payload.expect &&
   fss_embedded_list_read +n -on "" ${file_source} > ${test_current}object-name-.expect &&
   fss_embedded_list_read +n -on мир ${file_source} > ${test_current}object-name-мир.expect &&
   fss_embedded_list_read +n -on "привет has space" ${file_source} > ${test_current}object-name-привет_has_space.expect &&
   fss_embedded_list_read +n -on a ${file_source} > ${test_current}object-name-a.expect &&
   fss_embedded_list_read +n -ont hi ${file_source} > ${test_current}object-name-hi-total.expect &&
+  fss_embedded_list_read +n -ont payload ${file_source} > ${test_current}object-name-payload-total.expect &&
   fss_embedded_list_read +n -ont a ${file_source} > ${test_current}object-name-a-total.expect &&
   fss_embedded_list_read +n -ont "" ${file_source} > ${test_current}object-name--total.expect &&
   fss_embedded_list_read +n -ont мир ${file_source} > ${test_current}object-name-мир-total.expect &&
   fss_embedded_list_read +n -ont "привет has space" ${file_source} > ${test_current}object-name-привет_has_space-total.expect &&
   fss_embedded_list_read +n -ons hi 0 ${file_source} > ${test_current}object-name-hi-select-0.expect &&
   fss_embedded_list_read +n -ons hi 1 ${file_source} > ${test_current}object-name-hi-select-1.expect &&
+  fss_embedded_list_read +n -ons payload 0 ${file_source} > ${test_current}object-name-payload-select-0.expect &&
+  fss_embedded_list_read +n -ons payload 1 ${file_source} > ${test_current}object-name-payload-select-1.expect &&
   fss_embedded_list_read +n -ons a 0 ${file_source} > ${test_current}object-name-a-select-0.expect &&
   fss_embedded_list_read +n -ons a 1 ${file_source} > ${test_current}object-name-a-select-1.expect &&
   fss_embedded_list_read +n -ons a 2 ${file_source} > ${test_current}object-name-a-select-2.expect &&
@@ -948,6 +1030,8 @@ generate_operate_0008() {
   fss_embedded_list_read +n -ons привет 1 ${file_source} > ${test_current}object-name-привет-select-1.expect &&
   fss_embedded_list_read +n -onst hi 0 ${file_source} > ${test_current}object-name-hi-select-0-total.expect &&
   fss_embedded_list_read +n -onst hi 1 ${file_source} > ${test_current}object-name-hi-select-1-total.expect &&
+  fss_embedded_list_read +n -onst payload 0 ${file_source} > ${test_current}object-name-payload-select-0-total.expect &&
+  fss_embedded_list_read +n -onst payload 1 ${file_source} > ${test_current}object-name-payload-select-1-total.expect &&
   fss_embedded_list_read +n -onst a 0 ${file_source} > ${test_current}object-name-a-select-0-total.expect &&
   fss_embedded_list_read +n -onst a 1 ${file_source} > ${test_current}object-name-a-select-1-total.expect &&
   fss_embedded_list_read +n -onst a 2 ${file_source} > ${test_current}object-name-a-select-2-total.expect &&
@@ -982,17 +1066,21 @@ generate_operate_0008() {
   fss_embedded_list_read +n -oca 6 ${file_source} > ${test_current}object_and_content-at-6.expect &&
   fss_embedded_list_read +n -oca 100 ${file_source} > ${test_current}object_and_content-at-100.expect &&
   fss_embedded_list_read +n -ocn hi ${file_source} > ${test_current}object_and_content-name-hi.expect &&
+  fss_embedded_list_read +n -ocn payload ${file_source} > ${test_current}object_and_content-name-payload.expect &&
   fss_embedded_list_read +n -ocn a ${file_source} > ${test_current}object_and_content-name-a.expect &&
   fss_embedded_list_read +n -ocn "" ${file_source} > ${test_current}object_and_content-name-.expect &&
   fss_embedded_list_read +n -ocn мир ${file_source} > ${test_current}object_and_content-name-мир.expect &&
   fss_embedded_list_read +n -ocn привет ${file_source} > ${test_current}object_and_content-name-привет.expect &&
   fss_embedded_list_read +n -ocnt hi ${file_source} > ${test_current}object_and_content-name-hi-total.expect &&
+  fss_embedded_list_read +n -ocnt payload ${file_source} > ${test_current}object_and_content-name-payload-total.expect &&
   fss_embedded_list_read +n -ocnt a ${file_source} > ${test_current}object_and_content-name-a-total.expect &&
   fss_embedded_list_read +n -ocnt "" ${file_source} > ${test_current}object_and_content-name--total.expect &&
   fss_embedded_list_read +n -ocnt мир ${file_source} > ${test_current}object_and_content-name-мир-total.expect &&
   fss_embedded_list_read +n -ocnt "привет has space" ${file_source} > ${test_current}object_and_content-name-привет_has_space-total.expect &&
   fss_embedded_list_read +n -ocns hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0.expect &&
   fss_embedded_list_read +n -ocns hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1.expect &&
+  fss_embedded_list_read +n -ocns payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0.expect &&
+  fss_embedded_list_read +n -ocns payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1.expect &&
   fss_embedded_list_read +n -ocns a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0.expect &&
   fss_embedded_list_read +n -ocns a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1.expect &&
   fss_embedded_list_read +n -ocns a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2.expect &&
@@ -1007,6 +1095,8 @@ generate_operate_0008() {
   fss_embedded_list_read +n -ocns "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1.expect &&
   fss_embedded_list_read +n -ocnst hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0-total.expect &&
   fss_embedded_list_read +n -ocnst hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1-total.expect &&
+  fss_embedded_list_read +n -ocnst payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0-total.expect &&
+  fss_embedded_list_read +n -ocnst payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1-total.expect &&
   fss_embedded_list_read +n -ocnst a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0-total.expect &&
   fss_embedded_list_read +n -ocnst a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1-total.expect &&
   fss_embedded_list_read +n -ocnst a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2-total.expect &&
@@ -1052,17 +1142,21 @@ generate_operate_000e() {
   fss_payload_read +n -ca 6 ${file_source} > ${test_current}content-at-6.expect &&
   fss_payload_read +n -ca 100 ${file_source} > ${test_current}content-at-100.expect &&
   fss_payload_read +n -cn hi ${file_source} > ${test_current}content-name-hi.expect &&
+  fss_payload_read +n -cn payload ${file_source} > ${test_current}content-name-payload.expect &&
   fss_payload_read +n -cn a ${file_source} > ${test_current}content-name-a.expect &&
   fss_payload_read +n -cn "" ${file_source} > ${test_current}content-name-.expect &&
   fss_payload_read +n -cn мир ${file_source} > ${test_current}content-name-мир.expect &&
   fss_payload_read +n -cn "привет has space" ${file_source} > ${test_current}content-name-привет_has_space.expect &&
   fss_payload_read +n -cnt hi ${file_source} > ${test_current}content-name-hi-total.expect &&
+  fss_payload_read +n -cnt payload ${file_source} > ${test_current}content-name-payload-total.expect &&
   fss_payload_read +n -cnt a ${file_source} > ${test_current}content-name-a-total.expect &&
   fss_payload_read +n -cnt "" ${file_source} > ${test_current}content-name--total.expect &&
   fss_payload_read +n -cnt мир ${file_source} > ${test_current}content-name-мир-total.expect &&
   fss_payload_read +n -cnt "привет has space" ${file_source} > ${test_current}content-name-привет_has_space-total.expect &&
   fss_payload_read +n -cns hi 0 ${file_source} > ${test_current}content-name-hi-select-0.expect &&
   fss_payload_read +n -cns hi 1 ${file_source} > ${test_current}content-name-hi-select-1.expect &&
+  fss_payload_read +n -cns payload 0 ${file_source} > ${test_current}content-name-payload-select-0.expect &&
+  fss_payload_read +n -cns payload 1 ${file_source} > ${test_current}content-name-payload-select-1.expect &&
   fss_payload_read +n -cns a 0 ${file_source} > ${test_current}content-name-a-select-0.expect &&
   fss_payload_read +n -cns a 1 ${file_source} > ${test_current}content-name-a-select-1.expect &&
   fss_payload_read +n -cns a 2 ${file_source} > ${test_current}content-name-a-select-2.expect &&
@@ -1077,6 +1171,8 @@ generate_operate_000e() {
   fss_payload_read +n -cns "привет has space" 1 ${file_source} > ${test_current}content-name-привет_has_space-select-1.expect &&
   fss_payload_read +n -cnst hi 0 ${file_source} > ${test_current}content-name-hi-select-0-total.expect &&
   fss_payload_read +n -cnst hi 1 ${file_source} > ${test_current}content-name-hi-select-1-total.expect &&
+  fss_payload_read +n -cnst payload 0 ${file_source} > ${test_current}content-name-payload-select-0-total.expect &&
+  fss_payload_read +n -cnst payload 1 ${file_source} > ${test_current}content-name-payload-select-1-total.expect &&
   fss_payload_read +n -cnst a 0 ${file_source} > ${test_current}content-name-a-select-0-total.expect &&
   fss_payload_read +n -cnst a 1 ${file_source} > ${test_current}content-name-a-select-1-total.expect &&
   fss_payload_read +n -cnst a 2 ${file_source} > ${test_current}content-name-a-select-2-total.expect &&
@@ -1111,17 +1207,21 @@ generate_operate_000e() {
   fss_payload_read +n -oa 6 ${file_source} > ${test_current}object-at-6.expect &&
   fss_payload_read +n -oa 100 ${file_source} > ${test_current}object-at-100.expect &&
   fss_payload_read +n -on hi ${file_source} > ${test_current}object-name-hi.expect &&
+  fss_payload_read +n -on payload ${file_source} > ${test_current}object-name-payload.expect &&
   fss_payload_read +n -on "" ${file_source} > ${test_current}object-name-.expect &&
   fss_payload_read +n -on мир ${file_source} > ${test_current}object-name-мир.expect &&
   fss_payload_read +n -on "привет has space" ${file_source} > ${test_current}object-name-привет_has_space.expect &&
   fss_payload_read +n -on a ${file_source} > ${test_current}object-name-a.expect &&
   fss_payload_read +n -ont hi ${file_source} > ${test_current}object-name-hi-total.expect &&
+  fss_payload_read +n -ont payload ${file_source} > ${test_current}object-name-payload-total.expect &&
   fss_payload_read +n -ont a ${file_source} > ${test_current}object-name-a-total.expect &&
   fss_payload_read +n -ont "" ${file_source} > ${test_current}object-name--total.expect &&
   fss_payload_read +n -ont мир ${file_source} > ${test_current}object-name-мир-total.expect &&
   fss_payload_read +n -ont "привет has space" ${file_source} > ${test_current}object-name-привет_has_space-total.expect &&
   fss_payload_read +n -ons hi 0 ${file_source} > ${test_current}object-name-hi-select-0.expect &&
   fss_payload_read +n -ons hi 1 ${file_source} > ${test_current}object-name-hi-select-1.expect &&
+  fss_payload_read +n -ons payload 0 ${file_source} > ${test_current}object-name-payload-select-0.expect &&
+  fss_payload_read +n -ons payload 1 ${file_source} > ${test_current}object-name-payload-select-1.expect &&
   fss_payload_read +n -ons a 0 ${file_source} > ${test_current}object-name-a-select-0.expect &&
   fss_payload_read +n -ons a 1 ${file_source} > ${test_current}object-name-a-select-1.expect &&
   fss_payload_read +n -ons a 2 ${file_source} > ${test_current}object-name-a-select-2.expect &&
@@ -1136,6 +1236,8 @@ generate_operate_000e() {
   fss_payload_read +n -ons привет 1 ${file_source} > ${test_current}object-name-привет-select-1.expect &&
   fss_payload_read +n -onst hi 0 ${file_source} > ${test_current}object-name-hi-select-0-total.expect &&
   fss_payload_read +n -onst hi 1 ${file_source} > ${test_current}object-name-hi-select-1-total.expect &&
+  fss_payload_read +n -onst payload 0 ${file_source} > ${test_current}object-name-payload-select-0-total.expect &&
+  fss_payload_read +n -onst payload 1 ${file_source} > ${test_current}object-name-payload-select-1-total.expect &&
   fss_payload_read +n -onst a 0 ${file_source} > ${test_current}object-name-a-select-0-total.expect &&
   fss_payload_read +n -onst a 1 ${file_source} > ${test_current}object-name-a-select-1-total.expect &&
   fss_payload_read +n -onst a 2 ${file_source} > ${test_current}object-name-a-select-2-total.expect &&
@@ -1170,17 +1272,21 @@ generate_operate_000e() {
   fss_payload_read +n -oca 6 ${file_source} > ${test_current}object_and_content-at-6.expect &&
   fss_payload_read +n -oca 100 ${file_source} > ${test_current}object_and_content-at-100.expect &&
   fss_payload_read +n -ocn hi ${file_source} > ${test_current}object_and_content-name-hi.expect &&
+  fss_payload_read +n -ocn payload ${file_source} > ${test_current}object_and_content-name-payload.expect &&
   fss_payload_read +n -ocn a ${file_source} > ${test_current}object_and_content-name-a.expect &&
   fss_payload_read +n -ocn "" ${file_source} > ${test_current}object_and_content-name-.expect &&
   fss_payload_read +n -ocn мир ${file_source} > ${test_current}object_and_content-name-мир.expect &&
   fss_payload_read +n -ocn привет ${file_source} > ${test_current}object_and_content-name-привет.expect &&
   fss_payload_read +n -ocnt hi ${file_source} > ${test_current}object_and_content-name-hi-total.expect &&
+  fss_payload_read +n -ocnt payload ${file_source} > ${test_current}object_and_content-name-payload-total.expect &&
   fss_payload_read +n -ocnt a ${file_source} > ${test_current}object_and_content-name-a-total.expect &&
   fss_payload_read +n -ocnt "" ${file_source} > ${test_current}object_and_content-name--total.expect &&
   fss_payload_read +n -ocnt мир ${file_source} > ${test_current}object_and_content-name-мир-total.expect &&
   fss_payload_read +n -ocnt "привет has space" ${file_source} > ${test_current}object_and_content-name-привет_has_space-total.expect &&
   fss_payload_read +n -ocns hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0.expect &&
   fss_payload_read +n -ocns hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1.expect &&
+  fss_payload_read +n -ocns payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0.expect &&
+  fss_payload_read +n -ocns payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1.expect &&
   fss_payload_read +n -ocns a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0.expect &&
   fss_payload_read +n -ocns a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1.expect &&
   fss_payload_read +n -ocns a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2.expect &&
@@ -1195,6 +1301,8 @@ generate_operate_000e() {
   fss_payload_read +n -ocns "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1.expect &&
   fss_payload_read +n -ocnst hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0-total.expect &&
   fss_payload_read +n -ocnst hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1-total.expect &&
+  fss_payload_read +n -ocnst payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0-total.expect &&
+  fss_payload_read +n -ocnst payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1-total.expect &&
   fss_payload_read +n -ocnst a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0-total.expect &&
   fss_payload_read +n -ocnst a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1-total.expect &&
   fss_payload_read +n -ocnst a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2-total.expect &&
@@ -1241,17 +1349,21 @@ generate_operate_test_standard() {
   fss_read +n -A ${standard} -ca 6 ${file_source} > ${test_current}content-at-6.expect &&
   fss_read +n -A ${standard} -ca 100 ${file_source} > ${test_current}content-at-100.expect &&
   fss_read +n -A ${standard} -cn hi ${file_source} > ${test_current}content-name-hi.expect &&
+  fss_read +n -A ${standard} -cn payload ${file_source} > ${test_current}content-name-payload.expect &&
   fss_read +n -A ${standard} -cn a ${file_source} > ${test_current}content-name-a.expect &&
   fss_read +n -A ${standard} -cn "" ${file_source} > ${test_current}content-name-.expect &&
   fss_read +n -A ${standard} -cn мир ${file_source} > ${test_current}content-name-мир.expect &&
   fss_read +n -A ${standard} -cn "привет has space" ${file_source} > ${test_current}content-name-привет_has_space.expect &&
   fss_read +n -A ${standard} -cnt hi ${file_source} > ${test_current}content-name-hi-total.expect &&
+  fss_read +n -A ${standard} -cnt payload ${file_source} > ${test_current}content-name-payload-total.expect &&
   fss_read +n -A ${standard} -cnt a ${file_source} > ${test_current}content-name-a-total.expect &&
   fss_read +n -A ${standard} -cnt "" ${file_source} > ${test_current}content-name--total.expect &&
   fss_read +n -A ${standard} -cnt мир ${file_source} > ${test_current}content-name-мир-total.expect &&
   fss_read +n -A ${standard} -cnt "привет has space" ${file_source} > ${test_current}content-name-привет_has_space-total.expect &&
   fss_read +n -A ${standard} -cns hi 0 ${file_source} > ${test_current}content-name-hi-select-0.expect &&
   fss_read +n -A ${standard} -cns hi 1 ${file_source} > ${test_current}content-name-hi-select-1.expect &&
+  fss_read +n -A ${standard} -cns payload 0 ${file_source} > ${test_current}content-name-payload-select-0.expect &&
+  fss_read +n -A ${standard} -cns payload 1 ${file_source} > ${test_current}content-name-payload-select-1.expect &&
   fss_read +n -A ${standard} -cns a 0 ${file_source} > ${test_current}content-name-a-select-0.expect &&
   fss_read +n -A ${standard} -cns a 1 ${file_source} > ${test_current}content-name-a-select-1.expect &&
   fss_read +n -A ${standard} -cns a 2 ${file_source} > ${test_current}content-name-a-select-2.expect &&
@@ -1266,6 +1378,8 @@ generate_operate_test_standard() {
   fss_read +n -A ${standard} -cns "привет has space" 1 ${file_source} > ${test_current}content-name-привет_has_space-select-1.expect &&
   fss_read +n -A ${standard} -cnst hi 0 ${file_source} > ${test_current}content-name-hi-select-0-total.expect &&
   fss_read +n -A ${standard} -cnst hi 1 ${file_source} > ${test_current}content-name-hi-select-1-total.expect &&
+  fss_read +n -A ${standard} -cnst payload 0 ${file_source} > ${test_current}content-name-payload-select-0-total.expect &&
+  fss_read +n -A ${standard} -cnst payload 1 ${file_source} > ${test_current}content-name-payload-select-1-total.expect &&
   fss_read +n -A ${standard} -cnst a 0 ${file_source} > ${test_current}content-name-a-select-0-total.expect &&
   fss_read +n -A ${standard} -cnst a 1 ${file_source} > ${test_current}content-name-a-select-1-total.expect &&
   fss_read +n -A ${standard} -cnst a 2 ${file_source} > ${test_current}content-name-a-select-2-total.expect &&
@@ -1300,18 +1414,23 @@ generate_operate_test_standard() {
   fss_read +n -A ${standard} -oa 6 ${file_source} > ${test_current}object-at-6.expect &&
   fss_read +n -A ${standard} -oa 100 ${file_source} > ${test_current}object-at-100.expect &&
   fss_read +n -A ${standard} -on hi ${file_source} > ${test_current}object-name-hi.expect &&
+  fss_read +n -A ${standard} -on payload ${file_source} > ${test_current}object-name-payload.expect &&
   fss_read +n -A ${standard} -on "" ${file_source} > ${test_current}object-name-.expect &&
   fss_read +n -A ${standard} -on мир ${file_source} > ${test_current}object-name-мир.expect &&
   fss_read +n -A ${standard} -on "привет has space" ${file_source} > ${test_current}object-name-привет_has_space.expect &&
   fss_read +n -A ${standard} -on a ${file_source} > ${test_current}object-name-a.expect &&
   fss_read +n -A ${standard} -ont hi ${file_source} > ${test_current}object-name-hi-total.expect &&
   fss_read +n -A ${standard} -ont hi ${file_source} > ${test_current}object-name-hi-total.expect &&
+  fss_read +n -A ${standard} -ont payload ${file_source} > ${test_current}object-name-payload-total.expect &&
+  fss_read +n -A ${standard} -ont payload ${file_source} > ${test_current}object-name-payload-total.expect &&
   fss_read +n -A ${standard} -ont a ${file_source} > ${test_current}object-name-a-total.expect &&
   fss_read +n -A ${standard} -ont "" ${file_source} > ${test_current}object-name--total.expect &&
   fss_read +n -A ${standard} -ont мир ${file_source} > ${test_current}object-name-мир-total.expect &&
   fss_read +n -A ${standard} -ont "привет has space" ${file_source} > ${test_current}object-name-привет_has_space-total.expect &&
   fss_read +n -A ${standard} -ons hi 0 ${file_source} > ${test_current}object-name-hi-select-0.expect &&
   fss_read +n -A ${standard} -ons hi 1 ${file_source} > ${test_current}object-name-hi-select-1.expect &&
+  fss_read +n -A ${standard} -ons payload 0 ${file_source} > ${test_current}object-name-payload-select-0.expect &&
+  fss_read +n -A ${standard} -ons payload 1 ${file_source} > ${test_current}object-name-payload-select-1.expect &&
   fss_read +n -A ${standard} -ons a 0 ${file_source} > ${test_current}object-name-a-select-0.expect &&
   fss_read +n -A ${standard} -ons a 1 ${file_source} > ${test_current}object-name-a-select-1.expect &&
   fss_read +n -A ${standard} -ons a 2 ${file_source} > ${test_current}object-name-a-select-2.expect &&
@@ -1326,6 +1445,8 @@ generate_operate_test_standard() {
   fss_read +n -A ${standard} -ons привет 1 ${file_source} > ${test_current}object-name-привет_has_space-select-1.expect &&
   fss_read +n -A ${standard} -onst hi 0 ${file_source} > ${test_current}object-name-hi-select-0-total.expect &&
   fss_read +n -A ${standard} -onst hi 1 ${file_source} > ${test_current}object-name-hi-select-1-total.expect &&
+  fss_read +n -A ${standard} -onst payload 0 ${file_source} > ${test_current}object-name-payload-select-0-total.expect &&
+  fss_read +n -A ${standard} -onst payload 1 ${file_source} > ${test_current}object-name-payload-select-1-total.expect &&
   fss_read +n -A ${standard} -onst a 0 ${file_source} > ${test_current}object-name-a-select-0-total.expect &&
   fss_read +n -A ${standard} -onst a 1 ${file_source} > ${test_current}object-name-a-select-1-total.expect &&
   fss_read +n -A ${standard} -onst a 2 ${file_source} > ${test_current}object-name-a-select-2-total.expect &&
@@ -1360,17 +1481,21 @@ generate_operate_test_standard() {
   fss_read +n -A ${standard} -oca 6 ${file_source} > ${test_current}object_and_content-at-6.expect &&
   fss_read +n -A ${standard} -oca 100 ${file_source} > ${test_current}object_and_content-at-100.expect &&
   fss_read +n -A ${standard} -ocn hi ${file_source} > ${test_current}object_and_content-name-hi.expect &&
+  fss_read +n -A ${standard} -ocn payload ${file_source} > ${test_current}object_and_content-name-payload.expect &&
   fss_read +n -A ${standard} -ocn a ${file_source} > ${test_current}object_and_content-name-a.expect &&
   fss_read +n -A ${standard} -ocn "" ${file_source} > ${test_current}object_and_content-name-.expect &&
   fss_read +n -A ${standard} -ocn мир ${file_source} > ${test_current}object_and_content-name-мир.expect &&
   fss_read +n -A ${standard} -ocn привет ${file_source} > ${test_current}object_and_content-name-привет.expect &&
   fss_read +n -A ${standard} -ocnt hi ${file_source} > ${test_current}object_and_content-name-hi-total.expect &&
+  fss_read +n -A ${standard} -ocnt payload ${file_source} > ${test_current}object_and_content-name-payload-total.expect &&
   fss_read +n -A ${standard} -ocnt a ${file_source} > ${test_current}object_and_content-name-a-total.expect &&
   fss_read +n -A ${standard} -ocnt "" ${file_source} > ${test_current}object_and_content-name--total.expect &&
   fss_read +n -A ${standard} -ocnt мир ${file_source} > ${test_current}object_and_content-name-мир-total.expect &&
   fss_read +n -A ${standard} -ocnt "привет has space" ${file_source} > ${test_current}object_and_content-name-привет_has_space-total.expect &&
   fss_read +n -A ${standard} -ocns hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0.expect &&
   fss_read +n -A ${standard} -ocns hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1.expect &&
+  fss_read +n -A ${standard} -ocns payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0.expect &&
+  fss_read +n -A ${standard} -ocns payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1.expect &&
   fss_read +n -A ${standard} -ocns a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0.expect &&
   fss_read +n -A ${standard} -ocns a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1.expect &&
   fss_read +n -A ${standard} -ocns a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2.expect &&
@@ -1385,6 +1510,8 @@ generate_operate_test_standard() {
   fss_read +n -A ${standard} -ocns "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1.expect &&
   fss_read +n -A ${standard} -ocnst hi 0 ${file_source} > ${test_current}object_and_content-name-hi-select-0-total.expect &&
   fss_read +n -A ${standard} -ocnst hi 1 ${file_source} > ${test_current}object_and_content-name-hi-select-1-total.expect &&
+  fss_read +n -A ${standard} -ocnst payload 0 ${file_source} > ${test_current}object_and_content-name-payload-select-0-total.expect &&
+  fss_read +n -A ${standard} -ocnst payload 1 ${file_source} > ${test_current}object_and_content-name-payload-select-1-total.expect &&
   fss_read +n -A ${standard} -ocnst a 0 ${file_source} > ${test_current}object_and_content-name-a-select-0-total.expect &&
   fss_read +n -A ${standard} -ocnst a 1 ${file_source} > ${test_current}object_and_content-name-a-select-1-total.expect &&
   fss_read +n -A ${standard} -ocnst a 2 ${file_source} > ${test_current}object_and_content-name-a-select-2-total.expect &&