From: Kevin Day Date: Fri, 8 Nov 2024 05:00:02 +0000 (-0600) Subject: Update: Add FSS Embedded List read depth tests and fix test script files. X-Git-Tag: 0.6.13~37 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=1a8f2932e9501c063181e9985306ef82cb685c6f;p=fll Update: Add FSS Embedded List read depth tests and fix test script files. Add tests for the FSS-0008 standard using depths. I generated these test expectations. I will have to slowly review these over time or fix them when I identify one is wrong. I did do a test by building the same tests on both the 0.6 and 0.7 and found that they both pass. I either have correct logic or I have consistently bad logic. This adds a lot of FSS-0008 depth tests, however, the amount of tests needed is a lot more than what I have done here. I think this large number is a good start. Add special cases functions for the script tests. I noticed that the failure code is incorrectly being set (the logic appears reversed). The conditional argument used to determine which test being run in the test script is wrong. Create a new variable called `test_set` and use that. The `standard` variable can then be extracted from the `test_set`. The test script incorrectly is missing the `-o` for the Object in some cases. --- diff --git a/level_3/fss_basic_list_read/tests/runtime/script/generate.sh b/level_3/fss_basic_list_read/tests/runtime/script/generate.sh index ad5dc86..f763220 100644 --- a/level_3/fss_basic_list_read/tests/runtime/script/generate.sh +++ b/level_3/fss_basic_list_read/tests/runtime/script/generate.sh @@ -13,12 +13,15 @@ # generate_main() { - local standard="${1}" local file_source="${2}" local path_destination="${3}" local failure=0 local test_base= + local standard= local test_current= + local test_set="${1}" + + standard=$(echo -n ${test_set} | sed -e 's|^.*-||g') if [[ $standard == "" ]] ; then echo "ERROR: No standard specified." @@ -53,12 +56,12 @@ generate_main() { return 1 fi - test_base=$(echo $file_source | sed -e 's|.*/||g' -e 's|\..*$||') + test_base=$(echo ${file_source} | sed -e 's|.*/||g' -e 's|\..*$||') test_current="${path_destination}${test_base}-" - if [[ ${1} == "0002" ]] ; then + if [[ ${test_set} == "0002" ]] ; then generate_operate_0002 - elif [[ ${1} == "test-0002" ]] ; then + elif [[ ${test_set} == "test-0002" ]] ; then generate_operate_test_standard fi @@ -164,11 +167,21 @@ generate_operate_0002() { fss_basic_list_read +n -ol 5 ${file_source} > ${test_current}object-line-5.expect && fss_basic_list_read +n -ol 6 ${file_source} > ${test_current}object-line-6.expect && fss_basic_list_read +n -ol 100 ${file_source} > ${test_current}object-line-100.expect && + fss_basic_list_read +n -olO 0 ${file_source} > ${test_current}object-line-0-original.expect && + fss_basic_list_read +n -olO 1 ${file_source} > ${test_current}object-line-1-original.expect && + fss_basic_list_read +n -olO 5 ${file_source} > ${test_current}object-line-5-original.expect && + fss_basic_list_read +n -olO 6 ${file_source} > ${test_current}object-line-6-original.expect && + fss_basic_list_read +n -olO 100 ${file_source} > ${test_current}object-line-100-original.expect && fss_basic_list_read +n -os 0 ${file_source} > ${test_current}object-select-0.expect && fss_basic_list_read +n -os 1 ${file_source} > ${test_current}object-select-1.expect && fss_basic_list_read +n -os 5 ${file_source} > ${test_current}object-select-5.expect && fss_basic_list_read +n -os 6 ${file_source} > ${test_current}object-select-6.expect && fss_basic_list_read +n -os 100 ${file_source} > ${test_current}object-select-100.expect && + fss_basic_list_read +n -osO 0 ${file_source} > ${test_current}object-select-0-original.expect && + fss_basic_list_read +n -osO 1 ${file_source} > ${test_current}object-select-1-original.expect && + fss_basic_list_read +n -osO 5 ${file_source} > ${test_current}object-select-5-original.expect && + fss_basic_list_read +n -osO 6 ${file_source} > ${test_current}object-select-6-original.expect && + fss_basic_list_read +n -osO 100 ${file_source} > ${test_current}object-select-100-original.expect && fss_basic_list_read +n -oC ${file_source} > ${test_current}object-columns.expect && fss_basic_list_read +n -oa 0 ${file_source} > ${test_current}object-at-0.expect && fss_basic_list_read +n -oa 1 ${file_source} > ${test_current}object-at-1.expect && @@ -237,6 +250,11 @@ generate_operate_0002() { fss_basic_list_read +n -ocl 5 ${file_source} > ${test_current}object_and_content-line-5.expect && fss_basic_list_read +n -ocl 6 ${file_source} > ${test_current}object_and_content-line-6.expect && fss_basic_list_read +n -ocl 100 ${file_source} > ${test_current}object_and_content-line-100.expect && + fss_basic_list_read +n -oclO 0 ${file_source} > ${test_current}object_and_content-line-0-original.expect && + fss_basic_list_read +n -oclO 1 ${file_source} > ${test_current}object_and_content-line-1-original.expect && + fss_basic_list_read +n -oclO 5 ${file_source} > ${test_current}object_and_content-line-5-original.expect && + fss_basic_list_read +n -oclO 6 ${file_source} > ${test_current}object_and_content-line-6-original.expect && + fss_basic_list_read +n -oclO 100 ${file_source} > ${test_current}object_and_content-line-100-original.expect && fss_basic_list_read +n -ocs 0 ${file_source} > ${test_current}object_and_content-select-0.expect && fss_basic_list_read +n -ocs 1 ${file_source} > ${test_current}object_and_content-select-1.expect && fss_basic_list_read +n -ocs 5 ${file_source} > ${test_current}object_and_content-select-5.expect && @@ -310,14 +328,13 @@ generate_operate_0002() { echo "Generation Complete" if [[ $? -ne 0 ]] ; then - let failure=0 + let failure=1 fi return $failure } generate_operate_test_standard() { - standard=$(echo "${standard}" | sed -e 's|^test-||') fss_basic_list_read +n -c ${file_source} > ${test_current}content.expect && fss_basic_list_read +n -cO ${file_source} > ${test_current}content-original.expect && @@ -412,11 +429,21 @@ generate_operate_test_standard() { fss_basic_list_read +n -ol 5 ${file_source} > ${test_current}object-line-5.expect && fss_basic_list_read +n -ol 6 ${file_source} > ${test_current}object-line-6.expect && fss_basic_list_read +n -ol 100 ${file_source} > ${test_current}object-line-100.expect && + fss_basic_list_read +n -olO 0 ${file_source} > ${test_current}object-line-0-original.expect && + fss_basic_list_read +n -olO 1 ${file_source} > ${test_current}object-line-1-original.expect && + fss_basic_list_read +n -olO 5 ${file_source} > ${test_current}object-line-5-original.expect && + fss_basic_list_read +n -olO 6 ${file_source} > ${test_current}object-line-6-original.expect && + fss_basic_list_read +n -olO 100 ${file_source} > ${test_current}object-line-100-original.expect && fss_basic_list_read +n -os 0 ${file_source} > ${test_current}object-select-0.expect && fss_basic_list_read +n -os 1 ${file_source} > ${test_current}object-select-1.expect && fss_basic_list_read +n -os 5 ${file_source} > ${test_current}object-select-5.expect && fss_basic_list_read +n -os 6 ${file_source} > ${test_current}object-select-6.expect && fss_basic_list_read +n -os 100 ${file_source} > ${test_current}object-select-100.expect && + fss_basic_list_read +n -osO 0 ${file_source} > ${test_current}object-select-0-original.expect && + fss_basic_list_read +n -osO 1 ${file_source} > ${test_current}object-select-1-original.expect && + fss_basic_list_read +n -osO 5 ${file_source} > ${test_current}object-select-5-original.expect && + fss_basic_list_read +n -osO 6 ${file_source} > ${test_current}object-select-6-original.expect && + fss_basic_list_read +n -osO 100 ${file_source} > ${test_current}object-select-100-original.expect && fss_basic_list_read +n -oC ${file_source} > ${test_current}object-columns.expect && fss_basic_list_read +n -oa 0 ${file_source} > ${test_current}object-at-0.expect && fss_basic_list_read +n -oa 1 ${file_source} > ${test_current}object-at-1.expect && @@ -487,6 +514,11 @@ generate_operate_test_standard() { fss_basic_list_read +n -ocl 5 ${file_source} > ${test_current}object_and_content-line-5.expect && fss_basic_list_read +n -ocl 6 ${file_source} > ${test_current}object_and_content-line-6.expect && fss_basic_list_read +n -ocl 100 ${file_source} > ${test_current}object_and_content-line-100.expect && + fss_basic_list_read +n -oclO 0 ${file_source} > ${test_current}object_and_content-line-0-original.expect && + fss_basic_list_read +n -oclO 1 ${file_source} > ${test_current}object_and_content-line-1-original.expect && + fss_basic_list_read +n -oclO 5 ${file_source} > ${test_current}object_and_content-line-5-original.expect && + fss_basic_list_read +n -oclO 6 ${file_source} > ${test_current}object_and_content-line-6-original.expect && + fss_basic_list_read +n -oclO 100 ${file_source} > ${test_current}object_and_content-line-100-original.expect && fss_basic_list_read +n -ocs 0 ${file_source} > ${test_current}object_and_content-select-0.expect && fss_basic_list_read +n -ocs 1 ${file_source} > ${test_current}object_and_content-select-1.expect && fss_basic_list_read +n -ocs 5 ${file_source} > ${test_current}object_and_content-select-5.expect && @@ -509,8 +541,8 @@ generate_operate_test_standard() { fss_basic_list_read +n -ocn a ${file_source} > ${test_current}object_and_content-name-a.expect && fss_basic_list_read +n -ocnC a ${file_source} > ${test_current}object_and_content-name-a-columns.expect && fss_basic_list_read +n -ocnCe a ${file_source} > ${test_current}object_and_content-name-a-columns-empty.expect && - fss_basic_list_read +n -cnO a ${file_source} > ${test_current}content-name-a-original.expect && - fss_basic_list_read +n -cnOe a ${file_source} > ${test_current}content-name-a-original-empty.expect && + fss_basic_list_read +n -ocnO a ${file_source} > ${test_current}object_and_content-name-a-original.expect && + fss_basic_list_read +n -ocnOe a ${file_source} > ${test_current}object_and_content-name-a-original-empty.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 && @@ -557,20 +589,28 @@ generate_operate_test_standard() { fss_basic_list_read +n -ocnst "привет has space" 0 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-0-total.expect && fss_basic_list_read +n -ocnst "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1-total.expect && + generate_operate_test_standard_special_cases && + echo "Generation Complete" if [[ $? -ne 0 ]] ; then - let failure=0 + let failure=1 fi return $failure } +generate_operate_test_standard_special_cases() { + + return 0 +} + generate_cleanup() { unset generate_main unset generate_operate_0002 unset generate_operate_test_standard + unset generate_operate_test_standard_special_cases unset generate_cleanup } diff --git a/level_3/fss_basic_read/tests/runtime/script/generate.sh b/level_3/fss_basic_read/tests/runtime/script/generate.sh index 3574e7e..bcf22ae 100644 --- a/level_3/fss_basic_read/tests/runtime/script/generate.sh +++ b/level_3/fss_basic_read/tests/runtime/script/generate.sh @@ -13,12 +13,15 @@ # generate_main() { - local standard="${1}" local file_source="${2}" local path_destination="${3}" local failure=0 local test_base= + local standard= local test_current= + local test_set="${1}" + + standard=$(echo -n ${test_set} | sed -e 's|^.*-||g') if [[ $standard == "" ]] ; then echo "ERROR: No standard specified." @@ -53,12 +56,12 @@ generate_main() { return 1 fi - test_base=$(echo $file_source | sed -e 's|.*/||g' -e 's|\..*$||') + test_base=$(echo ${file_source} | sed -e 's|.*/||g' -e 's|\..*$||') test_current="${path_destination}${test_base}-" - if [[ ${1} == "0000" ]] ; then + if [[ ${test_set} == "0000" ]] ; then generate_operate_0000 - elif [[ ${1} == "test-0000" ]] ; then + elif [[ ${test_set} == "test-0000" ]] ; then generate_operate_test_standard fi @@ -164,11 +167,21 @@ generate_operate_0000() { fss_basic_read +n -ol 5 ${file_source} > ${test_current}object-line-5.expect && fss_basic_read +n -ol 6 ${file_source} > ${test_current}object-line-6.expect && fss_basic_read +n -ol 100 ${file_source} > ${test_current}object-line-100.expect && + fss_basic_read +n -olO 0 ${file_source} > ${test_current}object-line-0-original.expect && + fss_basic_read +n -olO 1 ${file_source} > ${test_current}object-line-1-original.expect && + fss_basic_read +n -olO 5 ${file_source} > ${test_current}object-line-5-original.expect && + fss_basic_read +n -olO 6 ${file_source} > ${test_current}object-line-6-original.expect && + fss_basic_read +n -olO 100 ${file_source} > ${test_current}object-line-100-original.expect && fss_basic_read +n -os 0 ${file_source} > ${test_current}object-select-0.expect && fss_basic_read +n -os 1 ${file_source} > ${test_current}object-select-1.expect && fss_basic_read +n -os 5 ${file_source} > ${test_current}object-select-5.expect && fss_basic_read +n -os 6 ${file_source} > ${test_current}object-select-6.expect && fss_basic_read +n -os 100 ${file_source} > ${test_current}object-select-100.expect && + fss_basic_read +n -osO 0 ${file_source} > ${test_current}object-select-0-original.expect && + fss_basic_read +n -osO 1 ${file_source} > ${test_current}object-select-1-original.expect && + fss_basic_read +n -osO 5 ${file_source} > ${test_current}object-select-5-original.expect && + fss_basic_read +n -osO 6 ${file_source} > ${test_current}object-select-6-original.expect && + fss_basic_read +n -osO 100 ${file_source} > ${test_current}object-select-100-original.expect && fss_basic_read +n -oC ${file_source} > ${test_current}object-columns.expect && fss_basic_read +n -oa 0 ${file_source} > ${test_current}object-at-0.expect && fss_basic_read +n -oa 1 ${file_source} > ${test_current}object-at-1.expect && @@ -237,6 +250,11 @@ generate_operate_0000() { fss_basic_read +n -ocl 5 ${file_source} > ${test_current}object_and_content-line-5.expect && fss_basic_read +n -ocl 6 ${file_source} > ${test_current}object_and_content-line-6.expect && fss_basic_read +n -ocl 100 ${file_source} > ${test_current}object_and_content-line-100.expect && + fss_basic_read +n -oclO 0 ${file_source} > ${test_current}object_and_content-line-0-original.expect && + fss_basic_read +n -oclO 1 ${file_source} > ${test_current}object_and_content-line-1-original.expect && + fss_basic_read +n -oclO 5 ${file_source} > ${test_current}object_and_content-line-5-original.expect && + fss_basic_read +n -oclO 6 ${file_source} > ${test_current}object_and_content-line-6-original.expect && + fss_basic_read +n -oclO 100 ${file_source} > ${test_current}object_and_content-line-100-original.expect && fss_basic_read +n -ocs 0 ${file_source} > ${test_current}object_and_content-select-0.expect && fss_basic_read +n -ocs 1 ${file_source} > ${test_current}object_and_content-select-1.expect && fss_basic_read +n -ocs 5 ${file_source} > ${test_current}object_and_content-select-5.expect && @@ -310,14 +328,13 @@ generate_operate_0000() { echo "Generation Complete" if [[ $? -ne 0 ]] ; then - let failure=0 + let failure=1 fi return $failure } generate_operate_test_standard() { - standard=$(echo "${standard}" | sed -e 's|^test-||') fss_basic_read +n -c ${file_source} > ${test_current}content.expect && fss_basic_read +n -cO ${file_source} > ${test_current}content-original.expect && @@ -412,11 +429,21 @@ generate_operate_test_standard() { fss_basic_read +n -ol 5 ${file_source} > ${test_current}object-line-5.expect && fss_basic_read +n -ol 6 ${file_source} > ${test_current}object-line-6.expect && fss_basic_read +n -ol 100 ${file_source} > ${test_current}object-line-100.expect && + fss_basic_read +n -olO 0 ${file_source} > ${test_current}object-line-0-original.expect && + fss_basic_read +n -olO 1 ${file_source} > ${test_current}object-line-1-original.expect && + fss_basic_read +n -olO 5 ${file_source} > ${test_current}object-line-5-original.expect && + fss_basic_read +n -olO 6 ${file_source} > ${test_current}object-line-6-original.expect && + fss_basic_read +n -olO 100 ${file_source} > ${test_current}object-line-100-original.expect && fss_basic_read +n -os 0 ${file_source} > ${test_current}object-select-0.expect && fss_basic_read +n -os 1 ${file_source} > ${test_current}object-select-1.expect && fss_basic_read +n -os 5 ${file_source} > ${test_current}object-select-5.expect && fss_basic_read +n -os 6 ${file_source} > ${test_current}object-select-6.expect && fss_basic_read +n -os 100 ${file_source} > ${test_current}object-select-100.expect && + fss_basic_read +n -osO 0 ${file_source} > ${test_current}object-select-0-original.expect && + fss_basic_read +n -osO 1 ${file_source} > ${test_current}object-select-1-original.expect && + fss_basic_read +n -osO 5 ${file_source} > ${test_current}object-select-5-original.expect && + fss_basic_read +n -osO 6 ${file_source} > ${test_current}object-select-6-original.expect && + fss_basic_read +n -osO 100 ${file_source} > ${test_current}object-select-100-original.expect && fss_basic_read +n -oC ${file_source} > ${test_current}object-columns.expect && fss_basic_read +n -oa 0 ${file_source} > ${test_current}object-at-0.expect && fss_basic_read +n -oa 1 ${file_source} > ${test_current}object-at-1.expect && @@ -487,6 +514,11 @@ generate_operate_test_standard() { fss_basic_read +n -ocl 5 ${file_source} > ${test_current}object_and_content-line-5.expect && fss_basic_read +n -ocl 6 ${file_source} > ${test_current}object_and_content-line-6.expect && fss_basic_read +n -ocl 100 ${file_source} > ${test_current}object_and_content-line-100.expect && + fss_basic_read +n -oclO 0 ${file_source} > ${test_current}object_and_content-line-0-original.expect && + fss_basic_read +n -oclO 1 ${file_source} > ${test_current}object_and_content-line-1-original.expect && + fss_basic_read +n -oclO 5 ${file_source} > ${test_current}object_and_content-line-5-original.expect && + fss_basic_read +n -oclO 6 ${file_source} > ${test_current}object_and_content-line-6-original.expect && + fss_basic_read +n -oclO 100 ${file_source} > ${test_current}object_and_content-line-100-original.expect && fss_basic_read +n -ocs 0 ${file_source} > ${test_current}object_and_content-select-0.expect && fss_basic_read +n -ocs 1 ${file_source} > ${test_current}object_and_content-select-1.expect && fss_basic_read +n -ocs 5 ${file_source} > ${test_current}object_and_content-select-5.expect && @@ -557,20 +589,28 @@ generate_operate_test_standard() { fss_basic_read +n -ocnst "привет has space" 0 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-0-total.expect && fss_basic_read +n -ocnst "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1-total.expect && + generate_operate_test_standard_special_cases && + echo "Generation Complete" if [[ $? -ne 0 ]] ; then - let failure=0 + let failure=1 fi return $failure } +generate_operate_test_standard_special_cases() { + + return 0 +} + generate_cleanup() { unset generate_main unset generate_operate_0000 unset generate_operate_test_standard + unset generate_operate_test_standard_special_cases unset generate_cleanup } diff --git a/level_3/fss_embedded_list_read/data/build/testfile b/level_3/fss_embedded_list_read/data/build/testfile index 48d81db..0e5fe37 100644 --- a/level_3/fss_embedded_list_read/data/build/testfile +++ b/level_3/fss_embedded_list_read/data/build/testfile @@ -59,6 +59,11 @@ generate_process: print run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0008 tests/runtime/fss_0008/source/test-0003-object_space.fss parameter:"build_path"test/fss_0008 + print + print Generating Test 0004 for Embedded List (FSS-0008). + print + run parameter:"script" ./tests/runtime/script/generate.sh parameter:"test_prefix"0008 tests/runtime/fss_0008/source/test-0004-nested_simple.fss parameter:"build_path"test/fss_0008 + verify_process: print print Verifying Tests for Embedded List (FSS-0008). diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-at-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-at-0.expect new file mode 100644 index 0000000..6c7c4c8 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-at-0.expect @@ -0,0 +1,17 @@ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-at-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-at-1.expect new file mode 100644 index 0000000..bfac4e0 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-at-1.expect @@ -0,0 +1,11 @@ + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-at-100.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-at-100.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-at-5.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-at-5.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-at-6.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-at-6.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-columns-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-columns-empty.expect new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-columns-empty.expect @@ -0,0 +1 @@ +1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-columns.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-columns.expect new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-columns.expect @@ -0,0 +1 @@ +1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0-depth_1-depth_2.expect new file mode 100644 index 0000000..1c115ac --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0-depth_1-depth_2.expect @@ -0,0 +1,2 @@ + This is it for at 0, depth 2, set 0. + This is the same across multiple sets, but for set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0-depth_1.expect new file mode 100644 index 0000000..5afc398 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0-depth_1.expect @@ -0,0 +1,9 @@ + This is it for at 0, depth 1, set 0. + This is it for at 1, depth 1, set 0. + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0.expect new file mode 100644 index 0000000..6c7c4c8 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-at_0.expect @@ -0,0 +1,17 @@ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..bc12c70 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1 @@ + This is it for at 0, depth 3, set 3. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-depth_1-depth_2.expect new file mode 100644 index 0000000..56fcd2b --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-depth_1-depth_2.expect @@ -0,0 +1,9 @@ + This is it for at 0, depth 2, set 0. + This is the same across multiple sets, but for set 0. + This is the same across multiple sets, but for set 1. + This is it for at 0, depth 2, set 2. + This is the same across multiple sets, but for set 2. + This is it for at 0, depth 2, set 3. + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-depth_1.expect new file mode 100644 index 0000000..b1ae2d6 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0-depth_1.expect @@ -0,0 +1,35 @@ + This is it for at 0, depth 1, set 0. + This is it for at 1, depth 1, set 0. + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + at 1, set 1. + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + This is it for at 0, depth 1, set 3. + at 1, set 3. + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0.expect new file mode 100644 index 0000000..603019e --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_0.expect @@ -0,0 +1,61 @@ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_1_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_1_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_1_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_1_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_1_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_1_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_1-name_depth_1_set_3_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_2-depth_2_same_across_sets-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_2-depth_2_same_across_sets-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_2-depth_2_same_across_sets-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_2-depth_2_same_across_sets-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_2-depth_2_same_across_sets-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_2-depth_2_same_across_sets-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_2-depth_2_same_across_sets-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_2-depth_2_same_across_sets-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_2-depth_2_same_across_sets.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-depth_2-depth_2_same_across_sets.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-0-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-0-original.expect new file mode 100644 index 0000000..e2d2f8d --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-0-original.expect @@ -0,0 +1 @@ + depth_1_set_0_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-0.expect new file mode 100644 index 0000000..e2d2f8d --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-0.expect @@ -0,0 +1 @@ + depth_1_set_0_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-1-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-1-original.expect new file mode 100644 index 0000000..9f0976c --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-1-original.expect @@ -0,0 +1 @@ + This is it for at 0, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-1.expect new file mode 100644 index 0000000..9f0976c --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-1.expect @@ -0,0 +1 @@ + This is it for at 0, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-100-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-100-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-100.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-100.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-5-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-5-original.expect new file mode 100644 index 0000000..9fe5513 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-5-original.expect @@ -0,0 +1 @@ + This is it for at 1, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-5.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-5.expect new file mode 100644 index 0000000..9fe5513 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-5.expect @@ -0,0 +1 @@ + This is it for at 1, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-6-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-6-original.expect new file mode 100644 index 0000000..a8317d6 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-6-original.expect @@ -0,0 +1 @@ + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-6.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-6.expect new file mode 100644 index 0000000..a8317d6 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line-6.expect @@ -0,0 +1 @@ + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0-depth_1-depth_2.expect new file mode 100644 index 0000000..2935185 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0-depth_1-depth_2.expect @@ -0,0 +1 @@ + This is it for at 0, depth 2, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0-depth_1.expect new file mode 100644 index 0000000..9f0976c --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0-depth_1.expect @@ -0,0 +1 @@ + This is it for at 0, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0.expect new file mode 100644 index 0000000..e2d2f8d --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-at_0.expect @@ -0,0 +1 @@ + depth_1_set_0_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..bc12c70 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1 @@ + This is it for at 0, depth 3, set 3. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-depth_1-depth_2.expect new file mode 100644 index 0000000..2935185 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-depth_1-depth_2.expect @@ -0,0 +1 @@ + This is it for at 0, depth 2, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-depth_1.expect new file mode 100644 index 0000000..9f0976c --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0-depth_1.expect @@ -0,0 +1 @@ + This is it for at 0, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0.expect new file mode 100644 index 0000000..e2d2f8d --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_0.expect @@ -0,0 +1 @@ + depth_1_set_0_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_1_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_1_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_1_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_1_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_1_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_1_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_1-name_depth_1_set_3_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_2-depth_2_same_across_sets-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_2-depth_2_same_across_sets-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_2-depth_2_same_across_sets-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_2-depth_2_same_across_sets-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_2-depth_2_same_across_sets-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_2-depth_2_same_across_sets-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_2-depth_2_same_across_sets-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_2-depth_2_same_across_sets-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_2-depth_2_same_across_sets.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_0-depth_2-depth_2_same_across_sets.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0-depth_1-depth_2.expect new file mode 100644 index 0000000..9f26136 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0-depth_1-depth_2.expect @@ -0,0 +1 @@ + This is the same across multiple sets, but for set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0-depth_1.expect new file mode 100644 index 0000000..9fe5513 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0-depth_1.expect @@ -0,0 +1 @@ + This is it for at 1, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0.expect new file mode 100644 index 0000000..9f0976c --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-at_0.expect @@ -0,0 +1 @@ + This is it for at 0, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-depth_1-depth_2.expect new file mode 100644 index 0000000..9f26136 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-depth_1-depth_2.expect @@ -0,0 +1 @@ + This is the same across multiple sets, but for set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-depth_1.expect new file mode 100644 index 0000000..9fe5513 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0-depth_1.expect @@ -0,0 +1 @@ + This is it for at 1, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0.expect new file mode 100644 index 0000000..9f0976c --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_0.expect @@ -0,0 +1 @@ + This is it for at 0, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_1_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_1_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_1_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_1_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_1_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_1_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_1-name_depth_1_set_3_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_2-depth_2_same_across_sets-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_2-depth_2_same_across_sets-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_2-depth_2_same_across_sets-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_2-depth_2_same_across_sets-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_2-depth_2_same_across_sets-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_2-depth_2_same_across_sets-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_2-depth_2_same_across_sets-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_2-depth_2_same_across_sets-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_2-depth_2_same_across_sets.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-line_1-depth_2-depth_2_same_across_sets.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--select-0-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--select-0-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--select-0-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--select-0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--select-1-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--select-1-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--select-1-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name--total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-columns-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-columns-empty.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-columns-empty.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-columns.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-columns.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-columns.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-original-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-original-empty.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-0-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-0-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-0-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-1-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-1-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-1-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-100-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-100-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-100-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-100.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-100.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-2-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-2-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-2-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-5-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-5-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-5-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-5.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-5.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-6-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-6-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-6-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-6.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-select-6.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-a.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-0-empty-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-0-empty-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-0-empty-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-0-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-0-empty.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-0-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-0-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-0-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-1-empty-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-1-empty-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-1-empty-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-1-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-1-empty.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-1-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-1-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-1-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-hi.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-select-0-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-select-0-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-select-0-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-select-0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-select-1-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-select-1-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-select-1-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-payload.expect new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-select-0-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-select-0-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-select-0-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-select-0.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-select-0.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-select-1-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-select-1-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-select-1-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-select-1.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-select-1.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\274\320\270\321\200.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space.expect" new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-original.expect new file mode 100644 index 0000000..603019e --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-original.expect @@ -0,0 +1,61 @@ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-0-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-0-original.expect new file mode 100644 index 0000000..603019e --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-0-original.expect @@ -0,0 +1,61 @@ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-0.expect new file mode 100644 index 0000000..603019e --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-0.expect @@ -0,0 +1,61 @@ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-1-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-1-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-100-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-100-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-100.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-100.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-5-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-5-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-5.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-5.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-6-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-6-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-6.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-select-6.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0-depth_1-depth_2.expect new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0-depth_1-depth_2.expect @@ -0,0 +1 @@ +2 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0-depth_1.expect new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0-depth_1.expect @@ -0,0 +1 @@ +9 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0.expect new file mode 100644 index 0000000..98d9bcb --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-at_0.expect @@ -0,0 +1 @@ +17 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1 @@ +1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-depth_1-depth_2.expect new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-depth_1-depth_2.expect @@ -0,0 +1 @@ +9 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-depth_1.expect new file mode 100644 index 0000000..8f92bfd --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0-depth_1.expect @@ -0,0 +1 @@ +35 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0.expect new file mode 100644 index 0000000..b1e7d26 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_0.expect @@ -0,0 +1 @@ +61 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name-at_1.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name-at_1.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name-at_2.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name-at_2.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_1_same_name.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_1.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_1.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_2.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name-at_2.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_1-name_depth_1_set_3_same_name.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets-at_1.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets-at_1.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets-at_2.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets-at_2.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total-depth_2-depth_2_same_across_sets.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total.expect new file mode 100644 index 0000000..b1e7d26 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-total.expect @@ -0,0 +1 @@ +61 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-trim.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-trim.expect new file mode 100644 index 0000000..603019e --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content-trim.expect @@ -0,0 +1,61 @@ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content.expect new file mode 100644 index 0000000..603019e --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-content.expect @@ -0,0 +1,61 @@ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-at-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-at-0.expect new file mode 100644 index 0000000..86f06c1 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-at-0.expect @@ -0,0 +1 @@ +depth_0_set_0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-at-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-at-1.expect new file mode 100644 index 0000000..85d4d6e --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-at-1.expect @@ -0,0 +1 @@ +depth_0_set_1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-at-100.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-at-100.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-at-5.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-at-5.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-at-6.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-at-6.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-columns.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-columns.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-columns.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0-depth_1-depth_2.expect new file mode 100644 index 0000000..dfc737e --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0-depth_1-depth_2.expect @@ -0,0 +1,2 @@ + depth_2_set_0_at_0 + depth_2_same_across_sets diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0-depth_1.expect new file mode 100644 index 0000000..ee8edeb --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0-depth_1.expect @@ -0,0 +1,3 @@ + depth_1_set_0_at_0 + depth_1_set_0_at_1 + depth_1_set_0_at_2 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0.expect new file mode 100644 index 0000000..86f06c1 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-at_0.expect @@ -0,0 +1 @@ +depth_0_set_0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..8f09aa4 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1 @@ + depth_3_set_3_at_0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-depth_1-depth_2.expect new file mode 100644 index 0000000..8333bf5 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-depth_1-depth_2.expect @@ -0,0 +1,7 @@ + depth_2_set_0_at_0 + depth_2_same_across_sets + depth_2_same_across_sets + depth_2_set_0_at_0 + depth_2_same_across_sets + depth_2_set_3_at_0 + depth_2_set_3_at_1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-depth_1.expect new file mode 100644 index 0000000..71fe5dd --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0-depth_1.expect @@ -0,0 +1,9 @@ + depth_1_set_0_at_0 + depth_1_set_0_at_1 + depth_1_set_0_at_2 + depth_1_set_1_same_name + depth_1_set_1_same_name + depth_1_set_2_at_0 + depth_1_set_3_at_0 + depth_1_set_3_same_name + depth_1_set_3_same_name diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0.expect new file mode 100644 index 0000000..9d05f33 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_0.expect @@ -0,0 +1,4 @@ +depth_0_set_0 +depth_0_set_1 +depth_0_set_2 +" depth_0_set_3 " diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_1_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_1_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_1_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_1_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_1_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_1_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_1-name_depth_1_set_3_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_2-depth_2_same_across_sets-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_2-depth_2_same_across_sets-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_2-depth_2_same_across_sets-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_2-depth_2_same_across_sets-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_2-depth_2_same_across_sets-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_2-depth_2_same_across_sets-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_2-depth_2_same_across_sets-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_2-depth_2_same_across_sets-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_2-depth_2_same_across_sets.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-depth_2-depth_2_same_across_sets.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-0-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-0-original.expect new file mode 100644 index 0000000..e4dca94 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-0-original.expect @@ -0,0 +1 @@ +depth_0_set_0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-0.expect new file mode 100644 index 0000000..86f06c1 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-0.expect @@ -0,0 +1 @@ +depth_0_set_0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-1-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-1-original.expect new file mode 100644 index 0000000..85d4d6e --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-1-original.expect @@ -0,0 +1 @@ +depth_0_set_1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-1.expect new file mode 100644 index 0000000..85d4d6e --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-1.expect @@ -0,0 +1 @@ +depth_0_set_1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-100-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-100-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-100.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-100.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-5-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-5-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-5.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-5.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-6-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-6-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-6.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line-6.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0-depth_1-depth_2.expect new file mode 100644 index 0000000..b46573c --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0-depth_1-depth_2.expect @@ -0,0 +1 @@ + depth_2_set_0_at_0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0-depth_1.expect new file mode 100644 index 0000000..4e7cfc6 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0-depth_1.expect @@ -0,0 +1 @@ + depth_1_set_0_at_0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0.expect new file mode 100644 index 0000000..86f06c1 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-at_0.expect @@ -0,0 +1 @@ +depth_0_set_0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..8f09aa4 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1 @@ + depth_3_set_3_at_0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-depth_1-depth_2.expect new file mode 100644 index 0000000..b46573c --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-depth_1-depth_2.expect @@ -0,0 +1 @@ + depth_2_set_0_at_0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-depth_1.expect new file mode 100644 index 0000000..4e7cfc6 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0-depth_1.expect @@ -0,0 +1 @@ + depth_1_set_0_at_0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0.expect new file mode 100644 index 0000000..86f06c1 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_0.expect @@ -0,0 +1 @@ +depth_0_set_0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_1_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_1_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_1_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_1_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_1_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_1_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_1-name_depth_1_set_3_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_2-depth_2_same_across_sets-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_2-depth_2_same_across_sets-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_2-depth_2_same_across_sets-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_2-depth_2_same_across_sets-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_2-depth_2_same_across_sets-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_2-depth_2_same_across_sets-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_2-depth_2_same_across_sets-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_2-depth_2_same_across_sets-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_2-depth_2_same_across_sets.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_0-depth_2-depth_2_same_across_sets.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-at_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-at_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-at_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-at_0-depth_1-depth_2.expect new file mode 100644 index 0000000..68bb7b2 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-at_0-depth_1-depth_2.expect @@ -0,0 +1 @@ + depth_2_same_across_sets diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-at_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-at_0-depth_1.expect new file mode 100644 index 0000000..d4bd2b6 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-at_0-depth_1.expect @@ -0,0 +1 @@ + depth_1_set_0_at_1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-depth_1-depth_2.expect new file mode 100644 index 0000000..68bb7b2 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-depth_1-depth_2.expect @@ -0,0 +1 @@ + depth_2_same_across_sets diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-depth_1.expect new file mode 100644 index 0000000..d4bd2b6 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0-depth_1.expect @@ -0,0 +1 @@ + depth_1_set_0_at_1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0.expect new file mode 100644 index 0000000..85d4d6e --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_0.expect @@ -0,0 +1 @@ +depth_0_set_1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_1_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_1_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_1_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_1_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_1_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_1_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_1-name_depth_1_set_3_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_2-depth_2_same_across_sets-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_2-depth_2_same_across_sets-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_2-depth_2_same_across_sets-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_2-depth_2_same_across_sets-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_2-depth_2_same_across_sets-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_2-depth_2_same_across_sets-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_2-depth_2_same_across_sets-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_2-depth_2_same_across_sets-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_2-depth_2_same_across_sets.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-line_1-depth_2-depth_2_same_across_sets.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--select-0-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--select-0-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--select-0-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--select-0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--select-1-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--select-1-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--select-1-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name--total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-columns-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-columns-empty.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-columns-empty.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-columns.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-columns.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-columns.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-original-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-original-empty.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-0-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-0-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-0-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-1-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-1-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-1-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-100-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-100-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-100-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-100.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-100.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-2-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-2-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-2-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-5-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-5-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-5-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-5.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-5.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-6-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-6-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-6-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-6.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-select-6.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-a.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-0-empty-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-0-empty-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-0-empty-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-0-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-0-empty.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-0-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-0-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-0-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-1-empty-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-1-empty-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-1-empty-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-1-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-1-empty.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-1-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-1-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-1-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-hi.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-select-0-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-select-0-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-select-0-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-select-0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-select-1-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-select-1-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-select-1-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-payload.expect new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-select-0-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-select-0-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-select-0-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-select-0.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-select-0.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-select-1-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-select-1-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-select-1-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-select-1.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-select-1.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\274\320\270\321\200.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space.expect" new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-original.expect new file mode 100644 index 0000000..f420d66 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-original.expect @@ -0,0 +1,4 @@ +depth_0_set_0 +depth_0_set_1 + depth_0_set_2 + " depth_0_set_3 " diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-0-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-0-original.expect new file mode 100644 index 0000000..f420d66 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-0-original.expect @@ -0,0 +1,4 @@ +depth_0_set_0 +depth_0_set_1 + depth_0_set_2 + " depth_0_set_3 " diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-0.expect new file mode 100644 index 0000000..9d05f33 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-0.expect @@ -0,0 +1,4 @@ +depth_0_set_0 +depth_0_set_1 +depth_0_set_2 +" depth_0_set_3 " diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-1-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-1-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-100-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-100-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-100.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-100.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-5-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-5-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-5.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-5.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-6-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-6-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-6.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-select-6.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0-depth_1-depth_2.expect new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0-depth_1-depth_2.expect @@ -0,0 +1 @@ +2 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0-depth_1.expect new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0-depth_1.expect @@ -0,0 +1 @@ +3 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0.expect new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-at_0.expect @@ -0,0 +1 @@ +1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1 @@ +1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-depth_1-depth_2.expect new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-depth_1-depth_2.expect @@ -0,0 +1 @@ +7 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-depth_1.expect new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0-depth_1.expect @@ -0,0 +1 @@ +9 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0.expect new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_0.expect @@ -0,0 +1 @@ +4 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name-at_1.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name-at_1.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name-at_2.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name-at_2.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_1_same_name.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_1.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_1.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_2.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name-at_2.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_1-name_depth_1_set_3_same_name.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets-at_1.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets-at_1.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets-at_2.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets-at_2.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total-depth_2-depth_2_same_across_sets.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total.expect new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-total.expect @@ -0,0 +1 @@ +4 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-trim.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-trim.expect new file mode 100644 index 0000000..9d05f33 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object-trim.expect @@ -0,0 +1,4 @@ +depth_0_set_0 +depth_0_set_1 +depth_0_set_2 +" depth_0_set_3 " diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object.expect new file mode 100644 index 0000000..9d05f33 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object.expect @@ -0,0 +1,4 @@ +depth_0_set_0 +depth_0_set_1 +depth_0_set_2 +" depth_0_set_3 " diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-at-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-at-0.expect new file mode 100644 index 0000000..dbd7abb --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-at-0.expect @@ -0,0 +1,19 @@ +depth_0_set_0{ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } +} diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-at-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-at-1.expect new file mode 100644 index 0000000..fbb556f --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-at-1.expect @@ -0,0 +1,13 @@ +depth_0_set_1{ + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } +} diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-at-100.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-at-100.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-at-5.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-at-5.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-at-6.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-at-6.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-columns-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-columns-empty.expect new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-columns-empty.expect @@ -0,0 +1 @@ +1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-columns.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-columns.expect new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-columns.expect @@ -0,0 +1 @@ +1 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-0-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-0-original.expect new file mode 100644 index 0000000..4e046fd --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-0-original.expect @@ -0,0 +1 @@ +depth_0_set_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-0.expect new file mode 100644 index 0000000..2b64255 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-0.expect @@ -0,0 +1 @@ +depth_0_set_0{ diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-1-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-1-original.expect new file mode 100644 index 0000000..e2d2f8d --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-1-original.expect @@ -0,0 +1 @@ + depth_1_set_0_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-1.expect new file mode 100644 index 0000000..e2d2f8d --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-1.expect @@ -0,0 +1 @@ + depth_1_set_0_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-100-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-100-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-100.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-100.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-5-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-5-original.expect new file mode 100644 index 0000000..4232fcf --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-5-original.expect @@ -0,0 +1 @@ + depth_1_set_0_at_1 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-5.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-5.expect new file mode 100644 index 0000000..4232fcf --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-5.expect @@ -0,0 +1 @@ + depth_1_set_0_at_1 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-6-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-6-original.expect new file mode 100644 index 0000000..9fe5513 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-6-original.expect @@ -0,0 +1 @@ + This is it for at 1, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-6.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-6.expect new file mode 100644 index 0000000..9fe5513 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-line-6.expect @@ -0,0 +1 @@ + This is it for at 1, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--select-0-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--select-0-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--select-0-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--select-0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--select-1-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--select-1-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--select-1-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name--total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-columns-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-columns-empty.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-columns-empty.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-columns.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-columns.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-columns.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-original-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-original-empty.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-0-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-0-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-0-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-1-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-1-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-1-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-100-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-100-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-100-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-100.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-100.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-2-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-2-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-2-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-5-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-5-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-5-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-5.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-5.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-6-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-6-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-6-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-6.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-select-6.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-a.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-0-empty-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-0-empty-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-0-empty-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-0-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-0-empty.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-0-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-0-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-0-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-1-empty-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-1-empty-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-1-empty-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-1-empty.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-1-empty.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-1-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-1-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-1-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-hi.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-select-0-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-select-0-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-select-0-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-select-0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-select-1-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-select-1-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-select-1-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-total.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload-total.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-payload.expect new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-select-0-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-select-0-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-select-0-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-select-0.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-select-0.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-select-1-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-select-1-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-select-1-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-select-1.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-select-1.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\274\320\270\321\200.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-0.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1-total.expect" @@ -0,0 +1 @@ +0 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-select-1.expect" new file mode 100644 index 0000000..e69de29 diff --git "a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-total.expect" "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-total.expect" new file mode 100644 index 0000000..573541a --- /dev/null +++ "b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-name-\320\277\321\200\320\270\320\262\320\265\321\202_has_space-total.expect" @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-original.expect new file mode 100644 index 0000000..8298947 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-original.expect @@ -0,0 +1,69 @@ +depth_0_set_0 { + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } +} +depth_0_set_1{ + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } +} + depth_0_set_2 { + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + } + " depth_0_set_3 " { + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-0-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-0-original.expect new file mode 100644 index 0000000..8298947 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-0-original.expect @@ -0,0 +1,69 @@ +depth_0_set_0 { + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } +} +depth_0_set_1{ + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } +} + depth_0_set_2 { + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + } + " depth_0_set_3 " { + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-0.expect new file mode 100644 index 0000000..a5573db --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-0.expect @@ -0,0 +1,69 @@ +depth_0_set_0{ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } +} +depth_0_set_1{ + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } +} + depth_0_set_2{ + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + } + " depth_0_set_3 "{ + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-1-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-1-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-100-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-100-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-100.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-100.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-5-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-5-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-5.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-5.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-6-original.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-6-original.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-6.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-select-6.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-total.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-total.expect new file mode 100644 index 0000000..b5489e5 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-total.expect @@ -0,0 +1 @@ +69 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-trim.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-trim.expect new file mode 100644 index 0000000..a5573db --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content-trim.expect @@ -0,0 +1,69 @@ +depth_0_set_0{ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } +} +depth_0_set_1{ + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } +} + depth_0_set_2{ + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + } + " depth_0_set_3 "{ + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content.expect new file mode 100644 index 0000000..a5573db --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_and_content.expect @@ -0,0 +1,69 @@ +depth_0_set_0{ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } +} +depth_0_set_1{ + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } +} + depth_0_set_2{ + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + } + " depth_0_set_3 "{ + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0-depth_1-depth_2.expect new file mode 100644 index 0000000..ac3be7c --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0-depth_1-depth_2.expect @@ -0,0 +1,6 @@ + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0-depth_1.expect new file mode 100644 index 0000000..9c98017 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0-depth_1.expect @@ -0,0 +1,15 @@ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0.expect new file mode 100644 index 0000000..dbd7abb --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-at_0.expect @@ -0,0 +1,19 @@ +depth_0_set_0{ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } +} diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..58dd0f7 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1,3 @@ + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-depth_1-depth_2.expect new file mode 100644 index 0000000..9542657 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-depth_1-depth_2.expect @@ -0,0 +1,23 @@ + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-depth_1.expect new file mode 100644 index 0000000..d5e4802 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0-depth_1.expect @@ -0,0 +1,53 @@ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + depth_1_set_1_same_name { + at 1, set 1. + } + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + depth_1_set_3_same_name { + at 1, set 3. + } + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0.expect new file mode 100644 index 0000000..a5573db --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_0.expect @@ -0,0 +1,69 @@ +depth_0_set_0{ + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } +} +depth_0_set_1{ + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } +} + depth_0_set_2{ + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + } + " depth_0_set_3 "{ + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_1_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_1_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_1_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_1_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_1_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_1_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_1-name_depth_1_set_3_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_2-depth_2_same_across_sets-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_2-depth_2_same_across_sets-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_2-depth_2_same_across_sets-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_2-depth_2_same_across_sets-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_2-depth_2_same_across_sets-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_2-depth_2_same_across_sets-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_2-depth_2_same_across_sets-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_2-depth_2_same_across_sets-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_2-depth_2_same_across_sets.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-depth_2-depth_2_same_across_sets.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0-depth_1-depth_2.expect new file mode 100644 index 0000000..59eae36 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0-depth_1-depth_2.expect @@ -0,0 +1 @@ + depth_2_set_0_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0-depth_1.expect new file mode 100644 index 0000000..a1f59b6 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0-depth_1.expect @@ -0,0 +1 @@ + depth_1_set_0_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0.expect new file mode 100644 index 0000000..2b64255 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-at_0.expect @@ -0,0 +1 @@ +depth_0_set_0{ diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..1d41098 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1 @@ + depth_3_set_3_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-depth_1-depth_2.expect new file mode 100644 index 0000000..59eae36 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-depth_1-depth_2.expect @@ -0,0 +1 @@ + depth_2_set_0_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-depth_1.expect new file mode 100644 index 0000000..a1f59b6 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0-depth_1.expect @@ -0,0 +1 @@ + depth_1_set_0_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0.expect new file mode 100644 index 0000000..2b64255 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_0.expect @@ -0,0 +1 @@ +depth_0_set_0{ diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_1_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_1_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_3_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_1-name_depth_1_set_3_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_2-depth_2_same_across_sets-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_2-depth_2_same_across_sets-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_2-depth_2_same_across_sets-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_2-depth_2_same_across_sets-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_2-depth_2_same_across_sets-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_2-depth_2_same_across_sets-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_2-depth_2_same_across_sets-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_2-depth_2_same_across_sets-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_2-depth_2_same_across_sets.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_0-depth_2-depth_2_same_across_sets.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0-depth_1-depth_2.expect new file mode 100644 index 0000000..2935185 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0-depth_1-depth_2.expect @@ -0,0 +1 @@ + This is it for at 0, depth 2, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0-depth_1.expect new file mode 100644 index 0000000..9f0976c --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0-depth_1.expect @@ -0,0 +1 @@ + This is it for at 0, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0.expect new file mode 100644 index 0000000..e2d2f8d --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-at_0.expect @@ -0,0 +1 @@ + depth_1_set_0_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..bc12c70 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1 @@ + This is it for at 0, depth 3, set 3. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-depth_1-depth_2.expect new file mode 100644 index 0000000..2935185 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-depth_1-depth_2.expect @@ -0,0 +1 @@ + This is it for at 0, depth 2, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-depth_1.expect new file mode 100644 index 0000000..9f0976c --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0-depth_1.expect @@ -0,0 +1 @@ + This is it for at 0, depth 1, set 0. diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0.expect new file mode 100644 index 0000000..e2d2f8d --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_0.expect @@ -0,0 +1 @@ + depth_1_set_0_at_0 { diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_1_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_1_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_3_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_1-name_depth_1_set_3_same_name.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_2-depth_2_same_across_sets-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_2-depth_2_same_across_sets-at_1-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_2-depth_2_same_across_sets-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_2-depth_2_same_across_sets-at_1.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_2-depth_2_same_across_sets-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_2-depth_2_same_across_sets-at_2-depth_3.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_2-depth_2_same_across_sets-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_2-depth_2_same_across_sets-at_2.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_2-depth_2_same_across_sets.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-line_1-depth_2-depth_2_same_across_sets.expect new file mode 100644 index 0000000..e69de29 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0-depth_1-depth_2.expect new file mode 100644 index 0000000..1e8b314 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0-depth_1-depth_2.expect @@ -0,0 +1 @@ +6 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0-depth_1.expect new file mode 100644 index 0000000..60d3b2f --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0-depth_1.expect @@ -0,0 +1 @@ +15 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0.expect new file mode 100644 index 0000000..d6b2404 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-at_0.expect @@ -0,0 +1 @@ +19 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-depth_1-depth_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-depth_1-depth_2-depth_3.expect new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-depth_1-depth_2-depth_3.expect @@ -0,0 +1 @@ +3 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-depth_1-depth_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-depth_1-depth_2.expect new file mode 100644 index 0000000..4099407 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-depth_1-depth_2.expect @@ -0,0 +1 @@ +23 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-depth_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-depth_1.expect new file mode 100644 index 0000000..59343b0 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0-depth_1.expect @@ -0,0 +1 @@ +53 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0.expect new file mode 100644 index 0000000..b5489e5 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_0.expect @@ -0,0 +1 @@ +69 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name-at_1.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name-at_1.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name-at_2.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name-at_2.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_1_same_name.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_1.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_1.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_2.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name-at_2.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_1-name_depth_1_set_3_same_name.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets-at_1.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets-at_1.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets-at_1.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets-at_2.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets-at_2.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets-at_2.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets.expect b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets.expect new file mode 100644 index 0000000..573541a --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/expect/test-0004-nested_simple-object_content-total-depth_2-depth_2_same_across_sets.expect @@ -0,0 +1 @@ +0 diff --git a/level_3/fss_embedded_list_read/tests/runtime/fss_0008/source/test-0004-nested_simple.fss b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/source/test-0004-nested_simple.fss new file mode 100644 index 0000000..16735d4 --- /dev/null +++ b/level_3/fss_embedded_list_read/tests/runtime/fss_0008/source/test-0004-nested_simple.fss @@ -0,0 +1,75 @@ +# fss-0008 +# This is a simple nested file intended for just testing the nesting functionality. + +depth_0_set_0 { + depth_1_set_0_at_0 { + This is it for at 0, depth 1, set 0. + } + + depth_1_set_0_at_1 { + This is it for at 1, depth 1, set 0. + } + + depth_1_set_0_at_2 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 0. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 0. + } + } +} + +depth_0_set_1{ + depth_1_set_1_same_name { + at 0, set 1. + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 1. + } + } + + depth_1_set_1_same_name { + at 1, set 1. + } +} + + depth_0_set_2 { + depth_1_set_2_at_0 { + depth_2_set_0_at_0 { + This is it for at 0, depth 2, set 2. + } + + depth_2_same_across_sets { + This is the same across multiple sets, but for set 2. + } + } + } + + " depth_0_set_3 " { + This one is silly as it has quotes (or maybe not silly). + The quotes allows for locking in spaces and then a second, independent, parser can just remove the quotes. + + depth_1_set_3_at_0 { + This is it for at 0, depth 1, set 3. + } + + depth_1_set_3_same_name { + at 1, set 3. + } + + depth_1_set_3_same_name { + at 2, set 3. + + depth_2_set_3_at_0 { + This is it for at 0, depth 2, set 3. + } + + depth_2_set_3_at_1 { + depth_3_set_3_at_0 { + This is it for at 0, depth 3, set 3. + } + } + } + } diff --git a/level_3/fss_embedded_list_read/tests/runtime/script/generate.sh b/level_3/fss_embedded_list_read/tests/runtime/script/generate.sh index b8b0705..a1b44fc 100644 --- a/level_3/fss_embedded_list_read/tests/runtime/script/generate.sh +++ b/level_3/fss_embedded_list_read/tests/runtime/script/generate.sh @@ -13,12 +13,15 @@ # generate_main() { - local standard="${1}" local file_source="${2}" local path_destination="${3}" local failure=0 local test_base= + local standard= local test_current= + local test_set="${1}" + + standard=$(echo -n ${test_set} | sed -e 's|^.*-||g') if [[ $standard == "" ]] ; then echo "ERROR: No standard specified." @@ -53,12 +56,12 @@ generate_main() { return 1 fi - test_base=$(echo $file_source | sed -e 's|.*/||g' -e 's|\..*$||') + test_base=$(echo ${file_source} | sed -e 's|.*/||g' -e 's|\..*$||') test_current="${path_destination}${test_base}-" - if [[ ${1} == "0008" ]] ; then + if [[ ${test_set} == "0008" ]] ; then generate_operate_0008 - elif [[ ${1} == "test-0008" ]] ; then + elif [[ ${test_set} == "test-0008" ]] ; then generate_operate_test_standard fi @@ -80,11 +83,6 @@ generate_operate_0008() { fss_embedded_list_read +n -cl 5 ${file_source} > ${test_current}content-line-5.expect && fss_embedded_list_read +n -cl 6 ${file_source} > ${test_current}content-line-6.expect && fss_embedded_list_read +n -cl 100 ${file_source} > ${test_current}content-line-100.expect && - fss_embedded_list_read +n -clO 0 ${file_source} > ${test_current}content-line-0-original.expect && - fss_embedded_list_read +n -clO 1 ${file_source} > ${test_current}content-line-1-original.expect && - fss_embedded_list_read +n -clO 5 ${file_source} > ${test_current}content-line-5-original.expect && - fss_embedded_list_read +n -clO 6 ${file_source} > ${test_current}content-line-6-original.expect && - fss_embedded_list_read +n -clO 100 ${file_source} > ${test_current}content-line-100-original.expect && fss_embedded_list_read +n -cs 0 ${file_source} > ${test_current}content-select-0.expect && fss_embedded_list_read +n -cs 1 ${file_source} > ${test_current}content-select-1.expect && fss_embedded_list_read +n -cs 5 ${file_source} > ${test_current}content-select-5.expect && @@ -95,6 +93,11 @@ generate_operate_0008() { fss_embedded_list_read +n -csO 5 ${file_source} > ${test_current}content-select-5-original.expect && fss_embedded_list_read +n -csO 6 ${file_source} > ${test_current}content-select-6-original.expect && fss_embedded_list_read +n -csO 100 ${file_source} > ${test_current}content-select-100-original.expect && + fss_embedded_list_read +n -clO 0 ${file_source} > ${test_current}content-line-0-original.expect && + fss_embedded_list_read +n -clO 1 ${file_source} > ${test_current}content-line-1-original.expect && + fss_embedded_list_read +n -clO 5 ${file_source} > ${test_current}content-line-5-original.expect && + fss_embedded_list_read +n -clO 6 ${file_source} > ${test_current}content-line-6-original.expect && + fss_embedded_list_read +n -clO 100 ${file_source} > ${test_current}content-line-100-original.expect && fss_embedded_list_read +n -cC ${file_source} > ${test_current}content-columns.expect && fss_embedded_list_read +n -cCe ${file_source} > ${test_current}content-columns-empty.expect && fss_embedded_list_read +n -ca 0 ${file_source} > ${test_current}content-at-0.expect && @@ -164,11 +167,21 @@ generate_operate_0008() { fss_embedded_list_read +n -ol 5 ${file_source} > ${test_current}object-line-5.expect && fss_embedded_list_read +n -ol 6 ${file_source} > ${test_current}object-line-6.expect && fss_embedded_list_read +n -ol 100 ${file_source} > ${test_current}object-line-100.expect && + fss_embedded_list_read +n -olO 0 ${file_source} > ${test_current}object-line-0-original.expect && + fss_embedded_list_read +n -olO 1 ${file_source} > ${test_current}object-line-1-original.expect && + fss_embedded_list_read +n -olO 5 ${file_source} > ${test_current}object-line-5-original.expect && + fss_embedded_list_read +n -olO 6 ${file_source} > ${test_current}object-line-6-original.expect && + fss_embedded_list_read +n -olO 100 ${file_source} > ${test_current}object-line-100-original.expect && fss_embedded_list_read +n -os 0 ${file_source} > ${test_current}object-select-0.expect && fss_embedded_list_read +n -os 1 ${file_source} > ${test_current}object-select-1.expect && fss_embedded_list_read +n -os 5 ${file_source} > ${test_current}object-select-5.expect && fss_embedded_list_read +n -os 6 ${file_source} > ${test_current}object-select-6.expect && fss_embedded_list_read +n -os 100 ${file_source} > ${test_current}object-select-100.expect && + fss_embedded_list_read +n -osO 0 ${file_source} > ${test_current}object-select-0-original.expect && + fss_embedded_list_read +n -osO 1 ${file_source} > ${test_current}object-select-1-original.expect && + fss_embedded_list_read +n -osO 5 ${file_source} > ${test_current}object-select-5-original.expect && + fss_embedded_list_read +n -osO 6 ${file_source} > ${test_current}object-select-6-original.expect && + fss_embedded_list_read +n -osO 100 ${file_source} > ${test_current}object-select-100-original.expect && fss_embedded_list_read +n -oC ${file_source} > ${test_current}object-columns.expect && fss_embedded_list_read +n -oa 0 ${file_source} > ${test_current}object-at-0.expect && fss_embedded_list_read +n -oa 1 ${file_source} > ${test_current}object-at-1.expect && @@ -241,6 +254,11 @@ generate_operate_0008() { fss_embedded_list_read +n -ocs 1 ${file_source} > ${test_current}object_and_content-select-1.expect && fss_embedded_list_read +n -ocs 5 ${file_source} > ${test_current}object_and_content-select-5.expect && fss_embedded_list_read +n -ocs 6 ${file_source} > ${test_current}object_and_content-select-6.expect && + fss_embedded_list_read +n -oclO 0 ${file_source} > ${test_current}object_and_content-line-0-original.expect && + fss_embedded_list_read +n -oclO 1 ${file_source} > ${test_current}object_and_content-line-1-original.expect && + fss_embedded_list_read +n -oclO 5 ${file_source} > ${test_current}object_and_content-line-5-original.expect && + fss_embedded_list_read +n -oclO 6 ${file_source} > ${test_current}object_and_content-line-6-original.expect && + fss_embedded_list_read +n -oclO 100 ${file_source} > ${test_current}object_and_content-line-100-original.expect && fss_embedded_list_read +n -ocs 100 ${file_source} > ${test_current}object_and_content-select-100.expect && fss_embedded_list_read +n -ocsO 0 ${file_source} > ${test_current}object_and_content-select-0-original.expect && fss_embedded_list_read +n -ocsO 1 ${file_source} > ${test_current}object_and_content-select-1-original.expect && @@ -307,17 +325,387 @@ generate_operate_0008() { fss_embedded_list_read +n -ocnst "привет has space" 0 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-0-total.expect && fss_embedded_list_read +n -ocnst "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1-total.expect && + generate_operate_0008_special_cases && + echo "Generation Complete" if [[ $? -ne 0 ]] ; then - let failure=0 + let failure=1 fi return $failure } +generate_operate_0008_special_cases() { + + if [[ ${test_base} == "test-0004-nested_simple" ]] ; then + fss_embedded_list_read +n -c -d 0 ${file_source} > ${test_current}content-depth_0.expect && + fss_embedded_list_read +n -c -d 0 -d 1 ${file_source} > ${test_current}content-depth_0-depth_1.expect && + fss_embedded_list_read +n -c -d 0 -d 1 -d 2 ${file_source} > ${test_current}content-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -c -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -c -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -ct -d 0 ${file_source} > ${test_current}content-total-depth_0.expect && + fss_embedded_list_read +n -ct -d 0 -d 1 ${file_source} > ${test_current}content-total-depth_0-depth_1.expect && + fss_embedded_list_read +n -ct -d 0 -d 1 -d 2 ${file_source} > ${test_current}content-total-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -ct -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-total-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -ct -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -c -l 0 -d 0 ${file_source} > ${test_current}content-line_0-depth_0.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -d 1 ${file_source} > ${test_current}content-line_0-depth_0-depth_1.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -d 1 -d 2 ${file_source} > ${test_current}content-line_0-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-line_0-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-line_0-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -c -l 1 -d 0 ${file_source} > ${test_current}content-line_1-depth_0.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -d 1 ${file_source} > ${test_current}content-line_1-depth_0-depth_1.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -d 1 -d 2 ${file_source} > ${test_current}content-line_1-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-line_1-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-line_1-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -c -d 0 -a 0 ${file_source} > ${test_current}content-depth_0-at_0.expect && + fss_embedded_list_read +n -c -d 0 -a 0 -d 1 ${file_source} > ${test_current}content-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -c -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}content-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -c -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -c -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -ct -d 0 -a 0 ${file_source} > ${test_current}content-total-depth_0-at_0.expect && + fss_embedded_list_read +n -ct -d 0 -a 0 -d 1 ${file_source} > ${test_current}content-total-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -ct -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}content-total-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -ct -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-total-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -ct -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -c -l 0 -d 0 -a 0 ${file_source} > ${test_current}content-line_0-depth_0-at_0.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -a 0 -d 1 ${file_source} > ${test_current}content-line_0-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}content-line_0-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-line_0-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-line_0-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -c -l 1 -d 0 -a 0 ${file_source} > ${test_current}content-line_1-depth_0-at_0.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -a 0 -d 1 ${file_source} > ${test_current}content-line_1-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}content-line_1-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-line_1-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-line_1-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -d 0 ${file_source} > ${test_current}object-depth_0.expect && + fss_embedded_list_read +n -o -d 0 -d 1 ${file_source} > ${test_current}object-depth_0-depth_1.expect && + fss_embedded_list_read +n -o -d 0 -d 1 -d 2 ${file_source} > ${test_current}object-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -o -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -o -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -ot -d 0 ${file_source} > ${test_current}object-total-depth_0.expect && + fss_embedded_list_read +n -ot -d 0 -d 1 ${file_source} > ${test_current}object-total-depth_0-depth_1.expect && + fss_embedded_list_read +n -ot -d 0 -d 1 -d 2 ${file_source} > ${test_current}object-total-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -ot -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-total-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -ot -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -l 0 -d 0 ${file_source} > ${test_current}object-line_0-depth_0.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -d 1 ${file_source} > ${test_current}object-line_0-depth_0-depth_1.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -d 1 -d 2 ${file_source} > ${test_current}object-line_0-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-line_0-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-line_0-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -l 1 -d 0 ${file_source} > ${test_current}object-line_1-depth_0.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -d 1 ${file_source} > ${test_current}object-line_1-depth_0-depth_1.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -d 1 -d 2 ${file_source} > ${test_current}object-line_1-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-line_1-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-line_1-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -d 0 -a 0 ${file_source} > ${test_current}object-depth_0-at_0.expect && + fss_embedded_list_read +n -o -d 0 -a 0 -d 1 ${file_source} > ${test_current}object-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -o -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -o -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -o -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -ot -d 0 -a 0 ${file_source} > ${test_current}object-total-depth_0-at_0.expect && + fss_embedded_list_read +n -ot -d 0 -a 0 -d 1 ${file_source} > ${test_current}object-total-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -ot -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object-total-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -ot -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-total-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -ot -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -l 0 -d 0 -a 0 ${file_source} > ${test_current}object-line_0-depth_0-at_0.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -a 0 -d 1 ${file_source} > ${test_current}object-line_0-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object-line_0-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-line_0-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-line_0-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -l 1 -d 0 -a 0 ${file_source} > ${test_current}object-line_1-depth_0-at_0.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -a 0 -d 1 ${file_source} > ${test_current}object-line_1-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object-line_1-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-line_1-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-line_1-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oc -d 0 ${file_source} > ${test_current}object_content-depth_0.expect && + fss_embedded_list_read +n -oc -d 0 -d 1 ${file_source} > ${test_current}object_content-depth_0-depth_1.expect && + fss_embedded_list_read +n -oc -d 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oc -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oc -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oct -d 0 ${file_source} > ${test_current}object_content-total-depth_0.expect && + fss_embedded_list_read +n -oct -d 0 -d 1 ${file_source} > ${test_current}object_content-total-depth_0-depth_1.expect && + fss_embedded_list_read +n -oct -d 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-total-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oct -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-total-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oct -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oc -l 0 -d 0 ${file_source} > ${test_current}object_content-line_0-depth_0.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -d 1 ${file_source} > ${test_current}object_content-line_0-depth_0-depth_1.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-line_0-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-line_0-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oc -l 1 -d 0 ${file_source} > ${test_current}object_content-line_1-depth_0.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -d 1 ${file_source} > ${test_current}object_content-line_1-depth_0-depth_1.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-line_1-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-line_1-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oc -d 0 -a 0 ${file_source} > ${test_current}object_content-depth_0-at_0.expect && + fss_embedded_list_read +n -oc -d 0 -a 0 -d 1 ${file_source} > ${test_current}object_content-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -oc -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oc -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oc -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oct -d 0 -a 0 ${file_source} > ${test_current}object_content-total-depth_0-at_0.expect && + fss_embedded_list_read +n -oct -d 0 -a 0 -d 1 ${file_source} > ${test_current}object_content-total-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -oct -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-total-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oct -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-total-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oct -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oc -l 0 -d 0 -a 0 ${file_source} > ${test_current}object_content-line_0-depth_0-at_0.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -a 0 -d 1 ${file_source} > ${test_current}object_content-line_0-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-line_0-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-line_0-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oc -l 1 -d 0 -a 0 ${file_source} > ${test_current}object_content-line_1-depth_0-at_0.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -a 0 -d 1 ${file_source} > ${test_current}object_content-line_1-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-line_1-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-line_1-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -o -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -o -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -o -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -o -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -o -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -ot -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object-total-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -ot -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object-total-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -ot -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object-total-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -ot -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -ot -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -o -l 0 -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object-line_0-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -o -l 0 -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object-line_0-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -o -l 0 -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object-line_0-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -o -l 0 -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object-line_0-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -o -l 0 -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object-line_0-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -o -l 1 -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object-line_1-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -o -l 1 -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object-line_1-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -o -l 1 -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object-line_1-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -o -l 1 -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object-line_1-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -o -l 1 -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object-line_1-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -c -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}content-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -c -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}content-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -c -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}content-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -c -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}content-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -c -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}content-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -c -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}content-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -ct -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}content-total-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -ct -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}content-total-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -ct -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}content-total-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -ct -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}content-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -ct -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}content-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -c -l 0 -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}content-line_0-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -c -l 0 -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}content-line_0-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -c -l 0 -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}content-line_0-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -c -l 0 -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}content-line_0-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -c -l 0 -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}content-line_0-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -c -l 1 -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}content-line_1-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -c -l 1 -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}content-line_1-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -c -l 1 -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}content-line_1-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -c -l 1 -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}content-line_1-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -c -l 1 -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}content-line_1-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -oc -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object_content-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -oc -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object_content-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -oc -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object_content-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -oc -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object_content-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -oc -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object_content-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -oct -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object_content-total-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -oct -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object_content-total-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -oct -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object_content-total-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oct -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object_content-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -oct -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object_content-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -oc -l 0 -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object_content-line_0-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -oc -l 0 -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object_content-line_0-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -oc -l 0 -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object_content-line_0-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -oc -l 0 -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -oc -l 1 -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object_content-line_1-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -oc -l 1 -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object_content-line_1-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -oc -l 1 -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object_content-line_1-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -oc -l 1 -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_2-depth_2_same_across_sets-at_2-depth_3.expect + + if [[ $? -ne 0 ]] ; then return 1; fi + fi + + return 0 +} + generate_operate_test_standard() { - standard=$(echo "${standard}" | sed -e 's|^test-||') fss_embedded_list_read +n -c ${file_source} > ${test_current}content.expect && fss_embedded_list_read +n -cO ${file_source} > ${test_current}content-original.expect && @@ -412,11 +800,21 @@ generate_operate_test_standard() { fss_embedded_list_read +n -ol 5 ${file_source} > ${test_current}object-line-5.expect && fss_embedded_list_read +n -ol 6 ${file_source} > ${test_current}object-line-6.expect && fss_embedded_list_read +n -ol 100 ${file_source} > ${test_current}object-line-100.expect && + fss_embedded_list_read +n -olO 0 ${file_source} > ${test_current}object-line-0-original.expect && + fss_embedded_list_read +n -olO 1 ${file_source} > ${test_current}object-line-1-original.expect && + fss_embedded_list_read +n -olO 5 ${file_source} > ${test_current}object-line-5-original.expect && + fss_embedded_list_read +n -olO 6 ${file_source} > ${test_current}object-line-6-original.expect && + fss_embedded_list_read +n -olO 100 ${file_source} > ${test_current}object-line-100-original.expect && fss_embedded_list_read +n -os 0 ${file_source} > ${test_current}object-select-0.expect && fss_embedded_list_read +n -os 1 ${file_source} > ${test_current}object-select-1.expect && fss_embedded_list_read +n -os 5 ${file_source} > ${test_current}object-select-5.expect && fss_embedded_list_read +n -os 6 ${file_source} > ${test_current}object-select-6.expect && fss_embedded_list_read +n -os 100 ${file_source} > ${test_current}object-select-100.expect && + fss_embedded_list_read +n -osO 0 ${file_source} > ${test_current}object-select-0-original.expect && + fss_embedded_list_read +n -osO 1 ${file_source} > ${test_current}object-select-1-original.expect && + fss_embedded_list_read +n -osO 5 ${file_source} > ${test_current}object-select-5-original.expect && + fss_embedded_list_read +n -osO 6 ${file_source} > ${test_current}object-select-6-original.expect && + fss_embedded_list_read +n -osO 100 ${file_source} > ${test_current}object-select-100-original.expect && fss_embedded_list_read +n -oC ${file_source} > ${test_current}object-columns.expect && fss_embedded_list_read +n -oa 0 ${file_source} > ${test_current}object-at-0.expect && fss_embedded_list_read +n -oa 1 ${file_source} > ${test_current}object-at-1.expect && @@ -487,6 +885,11 @@ generate_operate_test_standard() { fss_embedded_list_read +n -ocl 5 ${file_source} > ${test_current}object_and_content-line-5.expect && fss_embedded_list_read +n -ocl 6 ${file_source} > ${test_current}object_and_content-line-6.expect && fss_embedded_list_read +n -ocl 100 ${file_source} > ${test_current}object_and_content-line-100.expect && + fss_embedded_list_read +n -oclO 0 ${file_source} > ${test_current}object_and_content-line-0-original.expect && + fss_embedded_list_read +n -oclO 1 ${file_source} > ${test_current}object_and_content-line-1-original.expect && + fss_embedded_list_read +n -oclO 5 ${file_source} > ${test_current}object_and_content-line-5-original.expect && + fss_embedded_list_read +n -oclO 6 ${file_source} > ${test_current}object_and_content-line-6-original.expect && + fss_embedded_list_read +n -oclO 100 ${file_source} > ${test_current}object_and_content-line-100-original.expect && fss_embedded_list_read +n -ocs 0 ${file_source} > ${test_current}object_and_content-select-0.expect && fss_embedded_list_read +n -ocs 1 ${file_source} > ${test_current}object_and_content-select-1.expect && fss_embedded_list_read +n -ocs 5 ${file_source} > ${test_current}object_and_content-select-5.expect && @@ -557,20 +960,413 @@ generate_operate_test_standard() { fss_embedded_list_read +n -ocnst "привет has space" 0 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-0-total.expect && fss_embedded_list_read +n -ocnst "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1-total.expect && + generate_operate_test_standard_special_cases && + echo "Generation Complete" if [[ $? -ne 0 ]] ; then - let failure=0 + let failure=1 fi return $failure } +generate_operate_test_standard_special_cases() { + + if [[ ${standard} == "0008" ]] ; then + generate_operate_test_standard_special_cases_0008 + + if [[ $? -ne 0 ]] ; then + let failure=1 + fi + + return $failure + fi + + return 0 +} + +generate_operate_test_standard_special_cases_0008() { + + if [[ ${test_base} == "test-0004-nested_simple" ]] ; then + fss_embedded_list_read +n -c -d 0 ${file_source} > ${test_current}content-depth_0.expect && + fss_embedded_list_read +n -c -d 0 -d 1 ${file_source} > ${test_current}content-depth_0-depth_1.expect && + fss_embedded_list_read +n -c -d 0 -d 1 -d 2 ${file_source} > ${test_current}content-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -c -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -c -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -ct -d 0 ${file_source} > ${test_current}content-total-depth_0.expect && + fss_embedded_list_read +n -ct -d 0 -d 1 ${file_source} > ${test_current}content-total-depth_0-depth_1.expect && + fss_embedded_list_read +n -ct -d 0 -d 1 -d 2 ${file_source} > ${test_current}content-total-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -ct -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-total-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -ct -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -c -l 0 -d 0 ${file_source} > ${test_current}content-line_0-depth_0.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -d 1 ${file_source} > ${test_current}content-line_0-depth_0-depth_1.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -d 1 -d 2 ${file_source} > ${test_current}content-line_0-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-line_0-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-line_0-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -c -l 1 -d 0 ${file_source} > ${test_current}content-line_1-depth_0.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -d 1 ${file_source} > ${test_current}content-line_1-depth_0-depth_1.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -d 1 -d 2 ${file_source} > ${test_current}content-line_1-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-line_1-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-line_1-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -c -d 0 -a 0 ${file_source} > ${test_current}content-depth_0-at_0.expect && + fss_embedded_list_read +n -c -d 0 -a 0 -d 1 ${file_source} > ${test_current}content-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -c -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}content-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -c -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -c -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -ct -d 0 -a 0 ${file_source} > ${test_current}content-total-depth_0-at_0.expect && + fss_embedded_list_read +n -ct -d 0 -a 0 -d 1 ${file_source} > ${test_current}content-total-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -ct -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}content-total-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -ct -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-total-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -ct -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -c -l 0 -d 0 -a 0 ${file_source} > ${test_current}content-line_0-depth_0-at_0.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -a 0 -d 1 ${file_source} > ${test_current}content-line_0-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}content-line_0-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-line_0-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-line_0-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -c -l 1 -d 0 -a 0 ${file_source} > ${test_current}content-line_1-depth_0-at_0.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -a 0 -d 1 ${file_source} > ${test_current}content-line_1-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}content-line_1-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}content-line_1-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}content-line_1-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -d 0 ${file_source} > ${test_current}object-depth_0.expect && + fss_embedded_list_read +n -o -d 0 -d 1 ${file_source} > ${test_current}object-depth_0-depth_1.expect && + fss_embedded_list_read +n -o -d 0 -d 1 -d 2 ${file_source} > ${test_current}object-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -o -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -o -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -ot -d 0 ${file_source} > ${test_current}object-total-depth_0.expect && + fss_embedded_list_read +n -ot -d 0 -d 1 ${file_source} > ${test_current}object-total-depth_0-depth_1.expect && + fss_embedded_list_read +n -ot -d 0 -d 1 -d 2 ${file_source} > ${test_current}object-total-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -ot -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-total-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -ot -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -l 0 -d 0 ${file_source} > ${test_current}object-line_0-depth_0.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -d 1 ${file_source} > ${test_current}object-line_0-depth_0-depth_1.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -d 1 -d 2 ${file_source} > ${test_current}object-line_0-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-line_0-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-line_0-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -l 1 -d 0 ${file_source} > ${test_current}object-line_1-depth_0.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -d 1 ${file_source} > ${test_current}object-line_1-depth_0-depth_1.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -d 1 -d 2 ${file_source} > ${test_current}object-line_1-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-line_1-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-line_1-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -d 0 -a 0 ${file_source} > ${test_current}object-depth_0-at_0.expect && + fss_embedded_list_read +n -o -d 0 -a 0 -d 1 ${file_source} > ${test_current}object-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -o -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -o -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -o -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -ot -d 0 -a 0 ${file_source} > ${test_current}object-total-depth_0-at_0.expect && + fss_embedded_list_read +n -ot -d 0 -a 0 -d 1 ${file_source} > ${test_current}object-total-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -ot -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object-total-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -ot -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-total-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -ot -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -l 0 -d 0 -a 0 ${file_source} > ${test_current}object-line_0-depth_0-at_0.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -a 0 -d 1 ${file_source} > ${test_current}object-line_0-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object-line_0-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-line_0-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-line_0-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -l 1 -d 0 -a 0 ${file_source} > ${test_current}object-line_1-depth_0-at_0.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -a 0 -d 1 ${file_source} > ${test_current}object-line_1-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object-line_1-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object-line_1-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object-line_1-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oc -d 0 ${file_source} > ${test_current}object_content-depth_0.expect && + fss_embedded_list_read +n -oc -d 0 -d 1 ${file_source} > ${test_current}object_content-depth_0-depth_1.expect && + fss_embedded_list_read +n -oc -d 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oc -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oc -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oct -d 0 ${file_source} > ${test_current}object_content-total-depth_0.expect && + fss_embedded_list_read +n -oct -d 0 -d 1 ${file_source} > ${test_current}object_content-total-depth_0-depth_1.expect && + fss_embedded_list_read +n -oct -d 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-total-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oct -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-total-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oct -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-total-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oc -l 0 -d 0 ${file_source} > ${test_current}object_content-line_0-depth_0.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -d 1 ${file_source} > ${test_current}object_content-line_0-depth_0-depth_1.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-line_0-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-line_0-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oc -l 1 -d 0 ${file_source} > ${test_current}object_content-line_1-depth_0.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -d 1 ${file_source} > ${test_current}object_content-line_1-depth_0-depth_1.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-line_1-depth_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-line_1-depth_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oc -d 0 -a 0 ${file_source} > ${test_current}object_content-depth_0-at_0.expect && + fss_embedded_list_read +n -oc -d 0 -a 0 -d 1 ${file_source} > ${test_current}object_content-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -oc -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oc -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oc -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oct -d 0 -a 0 ${file_source} > ${test_current}object_content-total-depth_0-at_0.expect && + fss_embedded_list_read +n -oct -d 0 -a 0 -d 1 ${file_source} > ${test_current}object_content-total-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -oct -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-total-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oct -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-total-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oct -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-total-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oc -l 0 -d 0 -a 0 ${file_source} > ${test_current}object_content-line_0-depth_0-at_0.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -a 0 -d 1 ${file_source} > ${test_current}object_content-line_0-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-line_0-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-line_0-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -oc -l 1 -d 0 -a 0 ${file_source} > ${test_current}object_content-line_1-depth_0-at_0.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -a 0 -d 1 ${file_source} > ${test_current}object_content-line_1-depth_0-at_0-depth_1.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -a 0 -d 1 -d 2 ${file_source} > ${test_current}object_content-line_1-depth_0-at_0-depth_1-depth_2.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -a 0 -d 1 -d 2 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_0-at_0-depth_1-depth_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 0 -a 0 -d 1 -d 2 -d 3 -d 4 ${file_source} > ${test_current}object_content-line_1-depth_0-at_0-depth_1-depth_2-depth_3-depth_4.expect && + + fss_embedded_list_read +n -o -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -o -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -o -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -o -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -o -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -o -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -o -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -ot -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object-total-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -ot -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object-total-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -ot -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object-total-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -ot -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -ot -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -ot -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -o -l 0 -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object-line_0-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -o -l 0 -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object-line_0-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -o -l 0 -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object-line_0-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -o -l 0 -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object-line_0-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -o -l 0 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -o -l 0 -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object-line_0-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -o -l 1 -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object-line_1-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -o -l 1 -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object-line_1-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -o -l 1 -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object-line_1-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -o -l 1 -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object-line_1-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -o -l 1 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -o -l 1 -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object-line_1-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -c -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}content-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -c -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}content-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -c -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}content-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -c -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}content-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -c -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}content-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -c -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -c -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}content-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -ct -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}content-total-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -ct -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}content-total-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -ct -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}content-total-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -ct -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}content-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -ct -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -ct -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}content-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -c -l 0 -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}content-line_0-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -c -l 0 -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}content-line_0-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -c -l 0 -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}content-line_0-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -c -l 0 -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}content-line_0-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -c -l 0 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -c -l 0 -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}content-line_0-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -c -l 1 -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}content-line_1-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -c -l 1 -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}content-line_1-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -c -l 1 -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}content-line_1-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -c -l 1 -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}content-line_1-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -c -l 1 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -c -l 1 -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}content-line_1-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -oc -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object_content-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -oc -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object_content-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -oc -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object_content-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name-at_1-depth_3-at_0.expect && + fss_embedded_list_read +n -oc -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object_content-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oc -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object_content-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -oc -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object_content-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -oct -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object_content-total-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -oct -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object_content-total-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -oct -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object_content-total-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oct -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object_content-total-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oct -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object_content-total-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -oct -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object_content-total-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -oc -l 0 -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object_content-line_0-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -oc -l 0 -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object_content-line_0-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -oc -l 0 -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object_content-line_0-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 0 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object_content-line_0-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -oc -l 0 -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object_content-line_0-depth_2-depth_2_same_across_sets-at_2-depth_3.expect && + + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_1_same_name ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_1_same_name.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name.expect && + fss_embedded_list_read +n -oc -l 1 -d 2 -n depth_2_same_across_sets ${file_source} > ${test_current}object_content-line_1-depth_2-depth_2_same_across_sets.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_1_same_name -a 1 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_1.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name -a 1 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_1.expect && + fss_embedded_list_read +n -oc -l 1 -d 2 -n depth_2_same_across_sets -a 1 ${file_source} > ${test_current}object_content-line_1-depth_2-depth_2_same_across_sets-at_1.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_1_same_name -a 2 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_2.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name -a 2 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_2.expect && + fss_embedded_list_read +n -oc -l 1 -d 2 -n depth_2_same_across_sets -a 2 ${file_source} > ${test_current}object_content-line_1-depth_2-depth_2_same_across_sets-at_2.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_1_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name -a 1 -d 3 -a 0 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 2 -n depth_2_same_across_sets -a 1 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_2-depth_2_same_across_sets-at_1-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_1_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_1_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3.expect && + fss_embedded_list_read +n -oc -l 1 -d 1 -n depth_1_set_3_same_name -a 2 -d 3 -a 0 ${file_source} > ${test_current}object_content-line_1-depth_1-name_depth_1_set_3_same_name-at_2-depth_3-at_0.expect && + fss_embedded_list_read +n -oc -l 1 -d 2 -n depth_2_same_across_sets -a 2 -d 3 ${file_source} > ${test_current}object_content-line_1-depth_2-depth_2_same_across_sets-at_2-depth_3.expect + + if [[ $? -ne 0 ]] ; then + let failure=1 + fi + + return $failure + fi + + return 0 +} + generate_cleanup() { unset generate_main unset generate_operate_0008 + unset generate_operate_0008_special_cases unset generate_operate_test_standard + unset generate_operate_test_standard_special_cases + unset generate_operate_test_standard_special_cases_0008 unset generate_cleanup } diff --git a/level_3/fss_extended_list_read/tests/runtime/script/generate.sh b/level_3/fss_extended_list_read/tests/runtime/script/generate.sh index 99f66df..fbaef91 100644 --- a/level_3/fss_extended_list_read/tests/runtime/script/generate.sh +++ b/level_3/fss_extended_list_read/tests/runtime/script/generate.sh @@ -13,12 +13,15 @@ # generate_main() { - local standard="${1}" local file_source="${2}" local path_destination="${3}" local failure=0 local test_base= + local standard= local test_current= + local test_set="${1}" + + standard=$(echo -n ${test_set} | sed -e 's|^.*-||g') if [[ $standard == "" ]] ; then echo "ERROR: No standard specified." @@ -53,12 +56,12 @@ generate_main() { return 1 fi - test_base=$(echo $file_source | sed -e 's|.*/||g' -e 's|\..*$||') + test_base=$(echo ${file_source} | sed -e 's|.*/||g' -e 's|\..*$||') test_current="${path_destination}${test_base}-" - if [[ ${1} == "0003" ]] ; then + if [[ ${test_set} == "0003" ]] ; then generate_operate_0003 - elif [[ ${1} == "test-0003" ]] ; then + elif [[ ${test_set} == "test-0003" ]] ; then generate_operate_test_standard fi @@ -89,12 +92,12 @@ generate_operate_0003() { fss_extended_list_read +n -cs 1 ${file_source} > ${test_current}content-select-1.expect && fss_extended_list_read +n -cs 5 ${file_source} > ${test_current}content-select-5.expect && fss_extended_list_read +n -cs 6 ${file_source} > ${test_current}content-select-6.expect && + fss_extended_list_read +n -cs 100 ${file_source} > ${test_current}content-select-100.expect && fss_extended_list_read +n -csO 0 ${file_source} > ${test_current}content-select-0-original.expect && fss_extended_list_read +n -csO 1 ${file_source} > ${test_current}content-select-1-original.expect && fss_extended_list_read +n -csO 5 ${file_source} > ${test_current}content-select-5-original.expect && fss_extended_list_read +n -csO 6 ${file_source} > ${test_current}content-select-6-original.expect && fss_extended_list_read +n -csO 100 ${file_source} > ${test_current}content-select-100-original.expect && - fss_extended_list_read +n -cs 100 ${file_source} > ${test_current}content-select-100.expect && fss_extended_list_read +n -cC ${file_source} > ${test_current}content-columns.expect && fss_extended_list_read +n -cCe ${file_source} > ${test_current}content-columns-empty.expect && fss_extended_list_read +n -ca 0 ${file_source} > ${test_current}content-at-0.expect && @@ -164,11 +167,21 @@ generate_operate_0003() { fss_extended_list_read +n -ol 5 ${file_source} > ${test_current}object-line-5.expect && fss_extended_list_read +n -ol 6 ${file_source} > ${test_current}object-line-6.expect && fss_extended_list_read +n -ol 100 ${file_source} > ${test_current}object-line-100.expect && + fss_extended_list_read +n -olO 0 ${file_source} > ${test_current}object-line-0-original.expect && + fss_extended_list_read +n -olO 1 ${file_source} > ${test_current}object-line-1-original.expect && + fss_extended_list_read +n -olO 5 ${file_source} > ${test_current}object-line-5-original.expect && + fss_extended_list_read +n -olO 6 ${file_source} > ${test_current}object-line-6-original.expect && + fss_extended_list_read +n -olO 100 ${file_source} > ${test_current}object-line-100-original.expect && fss_extended_list_read +n -os 0 ${file_source} > ${test_current}object-select-0.expect && fss_extended_list_read +n -os 1 ${file_source} > ${test_current}object-select-1.expect && fss_extended_list_read +n -os 5 ${file_source} > ${test_current}object-select-5.expect && fss_extended_list_read +n -os 6 ${file_source} > ${test_current}object-select-6.expect && fss_extended_list_read +n -os 100 ${file_source} > ${test_current}object-select-100.expect && + fss_extended_list_read +n -osO 0 ${file_source} > ${test_current}object-select-0-original.expect && + fss_extended_list_read +n -osO 1 ${file_source} > ${test_current}object-select-1-original.expect && + fss_extended_list_read +n -osO 5 ${file_source} > ${test_current}object-select-5-original.expect && + fss_extended_list_read +n -osO 6 ${file_source} > ${test_current}object-select-6-original.expect && + fss_extended_list_read +n -osO 100 ${file_source} > ${test_current}object-select-100-original.expect && fss_extended_list_read +n -oC ${file_source} > ${test_current}object-columns.expect && fss_extended_list_read +n -oa 0 ${file_source} > ${test_current}object-at-0.expect && fss_extended_list_read +n -oa 1 ${file_source} > ${test_current}object-at-1.expect && @@ -237,6 +250,11 @@ generate_operate_0003() { fss_extended_list_read +n -ocl 5 ${file_source} > ${test_current}object_and_content-line-5.expect && fss_extended_list_read +n -ocl 6 ${file_source} > ${test_current}object_and_content-line-6.expect && fss_extended_list_read +n -ocl 100 ${file_source} > ${test_current}object_and_content-line-100.expect && + fss_extended_list_read +n -oclO 0 ${file_source} > ${test_current}object_and_content-line-0-original.expect && + fss_extended_list_read +n -oclO 1 ${file_source} > ${test_current}object_and_content-line-1-original.expect && + fss_extended_list_read +n -oclO 5 ${file_source} > ${test_current}object_and_content-line-5-original.expect && + fss_extended_list_read +n -oclO 6 ${file_source} > ${test_current}object_and_content-line-6-original.expect && + fss_extended_list_read +n -oclO 100 ${file_source} > ${test_current}object_and_content-line-100-original.expect && fss_extended_list_read +n -ocs 0 ${file_source} > ${test_current}object_and_content-select-0.expect && fss_extended_list_read +n -ocs 1 ${file_source} > ${test_current}object_and_content-select-1.expect && fss_extended_list_read +n -ocs 5 ${file_source} > ${test_current}object_and_content-select-5.expect && @@ -246,7 +264,7 @@ generate_operate_0003() { fss_extended_list_read +n -ocsO 1 ${file_source} > ${test_current}object_and_content-select-1-original.expect && fss_extended_list_read +n -ocsO 5 ${file_source} > ${test_current}object_and_content-select-5-original.expect && fss_extended_list_read +n -ocsO 6 ${file_source} > ${test_current}object_and_content-select-6-original.expect && - fss_extended_list_read +n -ocsO 100 ${file_source} > ${test_current}object_and_content-select-100-original.expect && + fss_extended_list_read +n -ocsO 100 ${file_source} > ${test_current}content-select-100-original.expect && fss_extended_list_read +n -ocC ${file_source} > ${test_current}object_and_content-columns.expect && fss_extended_list_read +n -ocCe ${file_source} > ${test_current}object_and_content-columns-empty.expect && fss_extended_list_read +n -oca 0 ${file_source} > ${test_current}object_and_content-at-0.expect && @@ -259,8 +277,8 @@ generate_operate_0003() { fss_extended_list_read +n -ocn a ${file_source} > ${test_current}object_and_content-name-a.expect && fss_extended_list_read +n -ocnC a ${file_source} > ${test_current}object_and_content-name-a-columns.expect && fss_extended_list_read +n -ocnCe a ${file_source} > ${test_current}object_and_content-name-a-columns-empty.expect && - fss_extended_list_read +n -ocnO a ${file_source} > ${test_current}object_and_content-name-a-original.expect && - fss_extended_list_read +n -ocnOe a ${file_source} > ${test_current}object_and_content-name-a-original-empty.expect && + fss_extended_list_read +n -onO a ${file_source} > ${test_current}object_and_content-name-a-original.expect && + fss_extended_list_read +n -onOe a ${file_source} > ${test_current}object_and_content-name-a-original-empty.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 && @@ -310,14 +328,13 @@ generate_operate_0003() { echo "Generation Complete" if [[ $? -ne 0 ]] ; then - let failure=0 + let failure=1 fi return $failure } generate_operate_test_standard() { - standard=$(echo "${standard}" | sed -e 's|^test-||') fss_extended_list_read +n -c ${file_source} > ${test_current}content.expect && fss_extended_list_read +n -cO ${file_source} > ${test_current}content-original.expect && @@ -412,11 +429,21 @@ generate_operate_test_standard() { fss_extended_list_read +n -ol 5 ${file_source} > ${test_current}object-line-5.expect && fss_extended_list_read +n -ol 6 ${file_source} > ${test_current}object-line-6.expect && fss_extended_list_read +n -ol 100 ${file_source} > ${test_current}object-line-100.expect && + fss_extended_list_read +n -olO 0 ${file_source} > ${test_current}object-line-0-original.expect && + fss_extended_list_read +n -olO 1 ${file_source} > ${test_current}object-line-1-original.expect && + fss_extended_list_read +n -olO 5 ${file_source} > ${test_current}object-line-5-original.expect && + fss_extended_list_read +n -olO 6 ${file_source} > ${test_current}object-line-6-original.expect && + fss_extended_list_read +n -olO 100 ${file_source} > ${test_current}object-line-100-original.expect && fss_extended_list_read +n -os 0 ${file_source} > ${test_current}object-select-0.expect && fss_extended_list_read +n -os 1 ${file_source} > ${test_current}object-select-1.expect && fss_extended_list_read +n -os 5 ${file_source} > ${test_current}object-select-5.expect && fss_extended_list_read +n -os 6 ${file_source} > ${test_current}object-select-6.expect && fss_extended_list_read +n -os 100 ${file_source} > ${test_current}object-select-100.expect && + fss_extended_list_read +n -osO 0 ${file_source} > ${test_current}object-select-0-original.expect && + fss_extended_list_read +n -osO 1 ${file_source} > ${test_current}object-select-1-original.expect && + fss_extended_list_read +n -osO 5 ${file_source} > ${test_current}object-select-5-original.expect && + fss_extended_list_read +n -osO 6 ${file_source} > ${test_current}object-select-6-original.expect && + fss_extended_list_read +n -osO 100 ${file_source} > ${test_current}object-select-100-original.expect && fss_extended_list_read +n -oC ${file_source} > ${test_current}object-columns.expect && fss_extended_list_read +n -oa 0 ${file_source} > ${test_current}object-at-0.expect && fss_extended_list_read +n -oa 1 ${file_source} > ${test_current}object-at-1.expect && @@ -487,6 +514,11 @@ generate_operate_test_standard() { fss_extended_list_read +n -ocl 5 ${file_source} > ${test_current}object_and_content-line-5.expect && fss_extended_list_read +n -ocl 6 ${file_source} > ${test_current}object_and_content-line-6.expect && fss_extended_list_read +n -ocl 100 ${file_source} > ${test_current}object_and_content-line-100.expect && + fss_extended_list_read +n -oclO 0 ${file_source} > ${test_current}object_and_content-line-0-original.expect && + fss_extended_list_read +n -oclO 1 ${file_source} > ${test_current}object_and_content-line-1-original.expect && + fss_extended_list_read +n -oclO 5 ${file_source} > ${test_current}object_and_content-line-5-original.expect && + fss_extended_list_read +n -oclO 6 ${file_source} > ${test_current}object_and_content-line-6-original.expect && + fss_extended_list_read +n -oclO 100 ${file_source} > ${test_current}object_and_content-line-100-original.expect && fss_extended_list_read +n -ocs 0 ${file_source} > ${test_current}object_and_content-select-0.expect && fss_extended_list_read +n -ocs 1 ${file_source} > ${test_current}object_and_content-select-1.expect && fss_extended_list_read +n -ocs 5 ${file_source} > ${test_current}object_and_content-select-5.expect && @@ -557,20 +589,28 @@ generate_operate_test_standard() { fss_extended_list_read +n -ocnst "привет has space" 0 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-0-total.expect && fss_extended_list_read +n -ocnst "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1-total.expect && + generate_operate_test_standard_special_cases && + echo "Generation Complete" if [[ $? -ne 0 ]] ; then - let failure=0 + let failure=1 fi return $failure } +generate_operate_test_standard_special_cases() { + + return 0 +} + generate_cleanup() { unset generate_main unset generate_operate_0003 unset generate_operate_test_standard + unset generate_operate_test_standard_special_cases unset generate_cleanup } diff --git a/level_3/fss_extended_read/tests/runtime/script/generate.sh b/level_3/fss_extended_read/tests/runtime/script/generate.sh index 5cf6b18..1eb1613 100644 --- a/level_3/fss_extended_read/tests/runtime/script/generate.sh +++ b/level_3/fss_extended_read/tests/runtime/script/generate.sh @@ -13,12 +13,15 @@ # generate_main() { - local standard="${1}" local file_source="${2}" local path_destination="${3}" local failure=0 local test_base= + local standard= local test_current= + local test_set="${1}" + + standard=$(echo -n ${test_set} | sed -e 's|^.*-||g') if [[ $standard == "" ]] ; then echo "ERROR: No standard specified." @@ -53,12 +56,12 @@ generate_main() { return 1 fi - test_base=$(echo $file_source | sed -e 's|.*/||g' -e 's|\..*$||') + test_base=$(echo ${file_source} | sed -e 's|.*/||g' -e 's|\..*$||') test_current="${path_destination}${test_base}-" - if [[ ${1} == "0001" ]] ; then + if [[ ${test_set} == "0001" ]] ; then generate_operate_0001 - elif [[ ${1} == "test-0001" ]] ; then + elif [[ ${test_set} == "test-0001" ]] ; then generate_operate_test_standard fi @@ -164,11 +167,21 @@ generate_operate_0001() { fss_extended_read +n -ol 5 ${file_source} > ${test_current}object-line-5.expect && fss_extended_read +n -ol 6 ${file_source} > ${test_current}object-line-6.expect && fss_extended_read +n -ol 100 ${file_source} > ${test_current}object-line-100.expect && + fss_extended_read +n -olO 0 ${file_source} > ${test_current}object-line-0-original.expect && + fss_extended_read +n -olO 1 ${file_source} > ${test_current}object-line-1-original.expect && + fss_extended_read +n -olO 5 ${file_source} > ${test_current}object-line-5-original.expect && + fss_extended_read +n -olO 6 ${file_source} > ${test_current}object-line-6-original.expect && + fss_extended_read +n -olO 100 ${file_source} > ${test_current}object-line-100-original.expect && fss_extended_read +n -os 0 ${file_source} > ${test_current}object-select-0.expect && fss_extended_read +n -os 1 ${file_source} > ${test_current}object-select-1.expect && fss_extended_read +n -os 5 ${file_source} > ${test_current}object-select-5.expect && fss_extended_read +n -os 6 ${file_source} > ${test_current}object-select-6.expect && fss_extended_read +n -os 100 ${file_source} > ${test_current}object-select-100.expect && + fss_extended_read +n -osO 0 ${file_source} > ${test_current}object-select-0-original.expect && + fss_extended_read +n -osO 1 ${file_source} > ${test_current}object-select-1-original.expect && + fss_extended_read +n -osO 5 ${file_source} > ${test_current}object-select-5-original.expect && + fss_extended_read +n -osO 6 ${file_source} > ${test_current}object-select-6-original.expect && + fss_extended_read +n -osO 100 ${file_source} > ${test_current}object-select-100-original.expect && fss_extended_read +n -oC ${file_source} > ${test_current}object-columns.expect && fss_extended_read +n -oa 0 ${file_source} > ${test_current}object-at-0.expect && fss_extended_read +n -oa 1 ${file_source} > ${test_current}object-at-1.expect && @@ -237,6 +250,11 @@ generate_operate_0001() { fss_extended_read +n -ocl 5 ${file_source} > ${test_current}object_and_content-line-5.expect && fss_extended_read +n -ocl 6 ${file_source} > ${test_current}object_and_content-line-6.expect && fss_extended_read +n -ocl 100 ${file_source} > ${test_current}object_and_content-line-100.expect && + fss_extended_read +n -oclO 0 ${file_source} > ${test_current}object_and_content-line-0-original.expect && + fss_extended_read +n -oclO 1 ${file_source} > ${test_current}object_and_content-line-1-original.expect && + fss_extended_read +n -oclO 5 ${file_source} > ${test_current}object_and_content-line-5-original.expect && + fss_extended_read +n -oclO 6 ${file_source} > ${test_current}object_and_content-line-6-original.expect && + fss_extended_read +n -oclO 100 ${file_source} > ${test_current}object_and_content-line-100-original.expect && fss_extended_read +n -ocs 0 ${file_source} > ${test_current}object_and_content-select-0.expect && fss_extended_read +n -ocs 1 ${file_source} > ${test_current}object_and_content-select-1.expect && fss_extended_read +n -ocs 5 ${file_source} > ${test_current}object_and_content-select-5.expect && @@ -310,14 +328,13 @@ generate_operate_0001() { echo "Generation Complete" if [[ $? -ne 0 ]] ; then - let failure=0 + let failure=1 fi return $failure } generate_operate_test_standard() { - standard=$(echo "${standard}" | sed -e 's|^test-||') fss_extended_read +n -c ${file_source} > ${test_current}content.expect && fss_extended_read +n -cO ${file_source} > ${test_current}content-original.expect && @@ -412,11 +429,21 @@ generate_operate_test_standard() { fss_extended_read +n -ol 5 ${file_source} > ${test_current}object-line-5.expect && fss_extended_read +n -ol 6 ${file_source} > ${test_current}object-line-6.expect && fss_extended_read +n -ol 100 ${file_source} > ${test_current}object-line-100.expect && + fss_extended_read +n -olO 0 ${file_source} > ${test_current}object-line-0-original.expect && + fss_extended_read +n -olO 1 ${file_source} > ${test_current}object-line-1-original.expect && + fss_extended_read +n -olO 5 ${file_source} > ${test_current}object-line-5-original.expect && + fss_extended_read +n -olO 6 ${file_source} > ${test_current}object-line-6-original.expect && + fss_extended_read +n -olO 100 ${file_source} > ${test_current}object-line-100-original.expect && fss_extended_read +n -os 0 ${file_source} > ${test_current}object-select-0.expect && fss_extended_read +n -os 1 ${file_source} > ${test_current}object-select-1.expect && fss_extended_read +n -os 5 ${file_source} > ${test_current}object-select-5.expect && fss_extended_read +n -os 6 ${file_source} > ${test_current}object-select-6.expect && fss_extended_read +n -os 100 ${file_source} > ${test_current}object-select-100.expect && + fss_extended_read +n -osO 0 ${file_source} > ${test_current}object-select-0-original.expect && + fss_extended_read +n -osO 1 ${file_source} > ${test_current}object-select-1-original.expect && + fss_extended_read +n -osO 5 ${file_source} > ${test_current}object-select-5-original.expect && + fss_extended_read +n -osO 6 ${file_source} > ${test_current}object-select-6-original.expect && + fss_extended_read +n -osO 100 ${file_source} > ${test_current}object-select-100-original.expect && fss_extended_read +n -oC ${file_source} > ${test_current}object-columns.expect && fss_extended_read +n -oa 0 ${file_source} > ${test_current}object-at-0.expect && fss_extended_read +n -oa 1 ${file_source} > ${test_current}object-at-1.expect && @@ -487,6 +514,11 @@ generate_operate_test_standard() { fss_extended_read +n -ocl 5 ${file_source} > ${test_current}object_and_content-line-5.expect && fss_extended_read +n -ocl 6 ${file_source} > ${test_current}object_and_content-line-6.expect && fss_extended_read +n -ocl 100 ${file_source} > ${test_current}object_and_content-line-100.expect && + fss_extended_read +n -oclO 0 ${file_source} > ${test_current}object_and_content-line-0-original.expect && + fss_extended_read +n -oclO 1 ${file_source} > ${test_current}object_and_content-line-1-original.expect && + fss_extended_read +n -oclO 5 ${file_source} > ${test_current}object_and_content-line-5-original.expect && + fss_extended_read +n -oclO 6 ${file_source} > ${test_current}object_and_content-line-6-original.expect && + fss_extended_read +n -oclO 100 ${file_source} > ${test_current}object_and_content-line-100-original.expect && fss_extended_read +n -ocs 0 ${file_source} > ${test_current}object_and_content-select-0.expect && fss_extended_read +n -ocs 1 ${file_source} > ${test_current}object_and_content-select-1.expect && fss_extended_read +n -ocs 5 ${file_source} > ${test_current}object_and_content-select-5.expect && @@ -557,20 +589,28 @@ generate_operate_test_standard() { fss_extended_read +n -ocnst "привет has space" 0 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-0-total.expect && fss_extended_read +n -ocnst "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1-total.expect && + generate_operate_test_standard_special_cases && + echo "Generation Complete" if [[ $? -ne 0 ]] ; then - let failure=0 + let failure=1 fi return $failure } +generate_operate_test_standard_special_cases() { + + return 0 +} + generate_cleanup() { unset generate_main unset generate_operate_0001 unset generate_operate_test_standard + unset generate_operate_test_standard_special_cases unset generate_cleanup } diff --git a/level_3/fss_payload_read/tests/runtime/script/generate.sh b/level_3/fss_payload_read/tests/runtime/script/generate.sh index e62f883..540db85 100644 --- a/level_3/fss_payload_read/tests/runtime/script/generate.sh +++ b/level_3/fss_payload_read/tests/runtime/script/generate.sh @@ -13,12 +13,15 @@ # generate_main() { - local standard="${1}" local file_source="${2}" local path_destination="${3}" local failure=0 local test_base= + local standard= local test_current= + local test_set="${1}" + + standard=$(echo -n ${test_set} | sed -e 's|^.*-||g') if [[ $standard == "" ]] ; then echo "ERROR: No standard specified." @@ -53,12 +56,12 @@ generate_main() { return 1 fi - test_base=$(echo $file_source | sed -e 's|.*/||g' -e 's|\..*$||') + test_base=$(echo ${file_source} | sed -e 's|.*/||g' -e 's|\..*$||') test_current="${path_destination}${test_base}-" - if [[ ${1} == "000e" ]] ; then + if [[ ${test_set} == "000e" ]] ; then generate_operate_000e - elif [[ ${1} == "test-000e" ]] ; then + elif [[ ${test_set} == "test-000e" ]] ; then generate_operate_test_standard fi @@ -164,11 +167,21 @@ generate_operate_000e() { fss_payload_read +n -ol 5 ${file_source} > ${test_current}object-line-5.expect && fss_payload_read +n -ol 6 ${file_source} > ${test_current}object-line-6.expect && fss_payload_read +n -ol 100 ${file_source} > ${test_current}object-line-100.expect && + fss_payload_read +n -olO 0 ${file_source} > ${test_current}object-line-0-original.expect && + fss_payload_read +n -olO 1 ${file_source} > ${test_current}object-line-1-original.expect && + fss_payload_read +n -olO 5 ${file_source} > ${test_current}object-line-5-original.expect && + fss_payload_read +n -olO 6 ${file_source} > ${test_current}object-line-6-original.expect && + fss_payload_read +n -olO 100 ${file_source} > ${test_current}object-line-100-original.expect && fss_payload_read +n -os 0 ${file_source} > ${test_current}object-select-0.expect && fss_payload_read +n -os 1 ${file_source} > ${test_current}object-select-1.expect && fss_payload_read +n -os 5 ${file_source} > ${test_current}object-select-5.expect && fss_payload_read +n -os 6 ${file_source} > ${test_current}object-select-6.expect && fss_payload_read +n -os 100 ${file_source} > ${test_current}object-select-100.expect && + fss_payload_read +n -osO 0 ${file_source} > ${test_current}object-select-0-original.expect && + fss_payload_read +n -osO 1 ${file_source} > ${test_current}object-select-1-original.expect && + fss_payload_read +n -osO 5 ${file_source} > ${test_current}object-select-5-original.expect && + fss_payload_read +n -osO 6 ${file_source} > ${test_current}object-select-6-original.expect && + fss_payload_read +n -osO 100 ${file_source} > ${test_current}object-select-100-original.expect && fss_payload_read +n -oC ${file_source} > ${test_current}object-columns.expect && fss_payload_read +n -oa 0 ${file_source} > ${test_current}object-at-0.expect && fss_payload_read +n -oa 1 ${file_source} > ${test_current}object-at-1.expect && @@ -237,11 +250,21 @@ generate_operate_000e() { fss_payload_read +n -ocl 5 ${file_source} > ${test_current}object_and_content-line-5.expect && fss_payload_read +n -ocl 6 ${file_source} > ${test_current}object_and_content-line-6.expect && fss_payload_read +n -ocl 100 ${file_source} > ${test_current}object_and_content-line-100.expect && + fss_payload_read +n -clO 0 ${file_source} > ${test_current}object_and_content-line-0-original.expect && + fss_payload_read +n -clO 1 ${file_source} > ${test_current}object_and_content-line-1-original.expect && + fss_payload_read +n -clO 5 ${file_source} > ${test_current}object_and_content-line-5-original.expect && + fss_payload_read +n -clO 6 ${file_source} > ${test_current}object_and_content-line-6-original.expect && + fss_payload_read +n -clO 100 ${file_source} > ${test_current}object_and_content-line-100-original.expect && fss_payload_read +n -ocs 0 ${file_source} > ${test_current}object_and_content-select-0.expect && fss_payload_read +n -ocs 1 ${file_source} > ${test_current}object_and_content-select-1.expect && fss_payload_read +n -ocs 5 ${file_source} > ${test_current}object_and_content-select-5.expect && fss_payload_read +n -ocs 6 ${file_source} > ${test_current}object_and_content-select-6.expect && fss_payload_read +n -ocs 100 ${file_source} > ${test_current}object_and_content-select-100.expect && + fss_payload_read +n -ocsO 0 ${file_source} > ${test_current}object_and_content-select-0-original.expect && + fss_payload_read +n -ocsO 1 ${file_source} > ${test_current}object_and_content-select-1-original.expect && + fss_payload_read +n -ocsO 5 ${file_source} > ${test_current}object_and_content-select-5-original.expect && + fss_payload_read +n -ocsO 6 ${file_source} > ${test_current}object_and_content-select-6-original.expect && + fss_payload_read +n -ocsO 100 ${file_source} > ${test_current}object_and_content-select-100-original.expect && fss_payload_read +n -ocC ${file_source} > ${test_current}object_and_content-columns.expect && fss_payload_read +n -ocCe ${file_source} > ${test_current}object_and_content-columns-empty.expect && fss_payload_read +n -oca 0 ${file_source} > ${test_current}object_and_content-at-0.expect && @@ -305,14 +328,13 @@ generate_operate_000e() { echo "Generation Complete" if [[ $? -ne 0 ]] ; then - let failure=0 + let failure=1 fi return $failure } generate_operate_test_standard() { - standard=$(echo "${standard}" | sed -e 's|^test-||') fss_payload_read +n -c ${file_source} > ${test_current}content.expect && fss_payload_read +n -cO ${file_source} > ${test_current}content-original.expect && @@ -407,11 +429,21 @@ generate_operate_test_standard() { fss_payload_read +n -ol 5 ${file_source} > ${test_current}object-line-5.expect && fss_payload_read +n -ol 6 ${file_source} > ${test_current}object-line-6.expect && fss_payload_read +n -ol 100 ${file_source} > ${test_current}object-line-100.expect && + fss_payload_read +n -olO 0 ${file_source} > ${test_current}object-line-0-original.expect && + fss_payload_read +n -olO 1 ${file_source} > ${test_current}object-line-1-original.expect && + fss_payload_read +n -olO 5 ${file_source} > ${test_current}object-line-5-original.expect && + fss_payload_read +n -olO 6 ${file_source} > ${test_current}object-line-6-original.expect && + fss_payload_read +n -olO 100 ${file_source} > ${test_current}object-line-100-original.expect && fss_payload_read +n -os 0 ${file_source} > ${test_current}object-select-0.expect && fss_payload_read +n -os 1 ${file_source} > ${test_current}object-select-1.expect && fss_payload_read +n -os 5 ${file_source} > ${test_current}object-select-5.expect && fss_payload_read +n -os 6 ${file_source} > ${test_current}object-select-6.expect && fss_payload_read +n -os 100 ${file_source} > ${test_current}object-select-100.expect && + fss_payload_read +n -osO 0 ${file_source} > ${test_current}object-select-0-original.expect && + fss_payload_read +n -osO 1 ${file_source} > ${test_current}object-select-1-original.expect && + fss_payload_read +n -osO 5 ${file_source} > ${test_current}object-select-5-original.expect && + fss_payload_read +n -osO 6 ${file_source} > ${test_current}object-select-6-original.expect && + fss_payload_read +n -osO 100 ${file_source} > ${test_current}object-select-100-original.expect && fss_payload_read +n -oC ${file_source} > ${test_current}object-columns.expect && fss_payload_read +n -oa 0 ${file_source} > ${test_current}object-at-0.expect && fss_payload_read +n -oa 1 ${file_source} > ${test_current}object-at-1.expect && @@ -482,6 +514,11 @@ generate_operate_test_standard() { fss_payload_read +n -ocl 5 ${file_source} > ${test_current}object_and_content-line-5.expect && fss_payload_read +n -ocl 6 ${file_source} > ${test_current}object_and_content-line-6.expect && fss_payload_read +n -ocl 100 ${file_source} > ${test_current}object_and_content-line-100.expect && + fss_payload_read +n -oclO 0 ${file_source} > ${test_current}object_and_content-line-0-original.expect && + fss_payload_read +n -oclO 1 ${file_source} > ${test_current}object_and_content-line-1-original.expect && + fss_payload_read +n -oclO 5 ${file_source} > ${test_current}object_and_content-line-5-original.expect && + fss_payload_read +n -oclO 6 ${file_source} > ${test_current}object_and_content-line-6-original.expect && + fss_payload_read +n -oclO 100 ${file_source} > ${test_current}object_and_content-line-100-original.expect && fss_payload_read +n -ocs 0 ${file_source} > ${test_current}object_and_content-select-0.expect && fss_payload_read +n -ocs 1 ${file_source} > ${test_current}object_and_content-select-1.expect && fss_payload_read +n -ocs 5 ${file_source} > ${test_current}object_and_content-select-5.expect && @@ -492,7 +529,6 @@ generate_operate_test_standard() { fss_payload_read +n -ocsO 5 ${file_source} > ${test_current}object_and_content-select-5-original.expect && fss_payload_read +n -ocsO 6 ${file_source} > ${test_current}object_and_content-select-6-original.expect && fss_payload_read +n -ocsO 100 ${file_source} > ${test_current}object_and_content-select-100-original.expect && - fss_payload_read +n -ocC ${file_source} > ${test_current}object_and_content-columns.expect && fss_payload_read +n -ocCe ${file_source} > ${test_current}object_and_content-columns-empty.expect && fss_payload_read +n -oca 0 ${file_source} > ${test_current}object_and_content-at-0.expect && @@ -553,20 +589,28 @@ generate_operate_test_standard() { fss_payload_read +n -ocnst "привет has space" 0 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-0-total.expect && fss_payload_read +n -ocnst "привет has space" 1 ${file_source} > ${test_current}object_and_content-name-привет_has_space-select-1-total.expect && + generate_operate_test_standard_special_cases && + echo "Generation Complete" if [[ $? -ne 0 ]] ; then - let failure=0 + let failure=1 fi return $failure } +generate_operate_test_standard_special_cases() { + + return 0 +} + generate_cleanup() { unset generate_main unset generate_operate_000e unset generate_operate_test_standard + unset generate_operate_test_standard_special_cases unset generate_cleanup }