diff --git a/.gitlab-ci/container/build-vkd3d-proton.sh b/.gitlab-ci/container/build-vkd3d-proton.sh index 8b6a4be2bc8..1cbd02d62b3 100644 --- a/.gitlab-ci/container/build-vkd3d-proton.sh +++ b/.gitlab-ci/container/build-vkd3d-proton.sh @@ -37,6 +37,11 @@ git submodule update --init --recursive git submodule update --recursive build_arch 64 build_arch 86 +mkdir "$VKD3D_PROTON_DST_DIR/tests" +cp \ + "tests/test-runner.sh" \ + "tests/d3d12_tests.h" \ + "$VKD3D_PROTON_DST_DIR/tests/" popd rm -rf "$VKD3D_PROTON_BUILD_DIR" diff --git a/.gitlab-ci/image-tags.yml b/.gitlab-ci/image-tags.yml index 6e1f61cdada..4f350a044b8 100644 --- a/.gitlab-ci/image-tags.yml +++ b/.gitlab-ci/image-tags.yml @@ -29,8 +29,8 @@ variables: DEBIAN_TEST_ANDROID_TAG: "20240826-runner" DEBIAN_TEST_GL_TAG: "20240826-runner" - DEBIAN_TEST_VK_TAG: "20240826-runner" - KERNEL_ROOTFS_TAG: "20240827-fw" + DEBIAN_TEST_VK_TAG: "20240829-vkd3d" + KERNEL_ROOTFS_TAG: "20240829-vkd3d" ALPINE_X86_64_BUILD_TAG: "20240814-var" ALPINE_X86_64_LAVA_SSH_TAG: "20240401-wlproto" diff --git a/.gitlab-ci/vkd3d-runner.sh b/.gitlab-ci/vkd3d-runner.sh index 746f52c736f..0f95f1b3c66 100755 --- a/.gitlab-ci/vkd3d-runner.sh +++ b/.gitlab-ci/vkd3d-runner.sh @@ -53,7 +53,7 @@ fi # Gather the list expected failures EXPECTATIONFILE="$RESULTS/$GPU_VERSION-vkd3d-fails.txt" if [ -f "$INSTALL/$GPU_VERSION-vkd3d-fails.txt" ]; then - cp "$INSTALL/$GPU_VERSION-vkd3d-fails.txt" "$EXPECTATIONFILE" + grep -vE '^(#|$)' "$INSTALL/$GPU_VERSION-vkd3d-fails.txt" | sort > "$EXPECTATIONFILE" else printf "%s\n" "$GPU_VERSION-vkd3d-fails.txt not found, assuming a \"no failures\" baseline." touch "$EXPECTATIONFILE" @@ -71,7 +71,7 @@ mapfile -t flakes_dups < <( printf '%s\n' "${flakes[@]}" | sort | uniq -d ) if [ ${#flakes_dups[@]} -gt 0 ]; then - echo >&2 'Duplicate flakes lines:' + printf >&2 'Duplicate flakes lines:\n' printf >&2 ' %s\n' "${flakes_dups[@]}" exit 1 fi @@ -83,58 +83,71 @@ for flake in "${flakes[@]}"; do fi done if [ ${#flakes_in_baseline[@]} -gt 0 ]; then - echo >&2 "Flakes found in $EXPECTATIONFILE:" + printf >&2 "Flakes found in %s:\n" "$EXPECTATIONFILE" printf >&2 ' %s\n' "${flakes_in_baseline[@]}" exit 1 fi printf "%s\n" "Running vkd3d-proton testsuite..." -if ! /vkd3d-proton-tests/x64/bin/d3d12 &> "$RESULTS/vkd3d-proton-log.txt"; then - # Check if the executable finished (ie. no segfault). - if ! grep "tests executed" "$RESULTS/vkd3d-proton-log.txt" > /dev/null; then - error "Failed, see ${ARTIFACTS_BASE_URL}/results/vkd3d-proton-log.txt" - exit 1 - fi +LOGFILE="$RESULTS/vkd3d-proton-log.txt" +TEST_LOGS="$PWD/test-logs" +(cd /vkd3d-proton-tests && tests/test-runner.sh x64/bin/d3d12 --output-dir "$TEST_LOGS" | tee "$LOGFILE") - # Collect all the failures - RESULTSFILE="$RESULTS/$GPU_VERSION.txt" - # Sometimes, some lines are randomly (?) prefixed with one of these: - # 058f:info:vkd3d_pipeline_library_disk_cache_initial_setup: - # 058f:info:vkd3d_pipeline_library_disk_cache_merge: - # 058f:info:vkd3d_pipeline_library_disk_thread_main: - # As a result, we have to specifically start the grep at the test name. - if ! grep -oE "test_\w+:.*Test failed.*$" "$RESULTS"/vkd3d-proton-log.txt > "$RESULTSFILE"; then - error "Failed to get the list of failing tests, see ${ARTIFACTS_BASE_URL}/results/vkd3d-proton-log.txt" - exit 1 - fi +printf '\n\n' - # Ignore flakes when comparing - STABLERESULTSFILE="$RESULTS/$GPU_VERSION-results-minus-flakes.txt" - cp "$RESULTSFILE" "$STABLERESULTSFILE" - for flake in "${flakes[@]}"; do - grep -vF "$flake" "$STABLERESULTSFILE" > tmp && mv tmp "$STABLERESULTSFILE" - done +# Check if the executable finished (ie. no segfault). +if ! grep -E "^Finished" "$LOGFILE" > /dev/null; then + error "Failed, see ${ARTIFACTS_BASE_URL}/results/vkd3d-proton-log.txt" + exit 1 +fi - # Make sure that the failures found in this run match the current expectation - if ! diff --color=always -u "$EXPECTATIONFILE" "$STABLERESULTSFILE"; then - error "Changes found, see ${ARTIFACTS_BASE_URL}/results/vkd3d-proton-log.txt" - exit 1 - fi +# Print list of flakes seen this time +flakes_seen=() +for flake in "${flakes[@]}"; do + if grep -qF "FAILED $flake" "$LOGFILE"; then + flakes_seen+=("$flake") + fi +done +if [ ${#flakes_seen[@]} -gt 0 ]; then + # Keep this string and output format in line with the corresponding + # deqp-runner message + printf >&2 '\nSome known flakes found:\n' + printf >&2 ' %s\n' "${flakes_seen[@]}" +fi - # Print list of flakes seen this time - flakes_seen=() - for flake in "${flakes[@]}"; do - if grep -qF "$flake" "$RESULTSFILE"; then - flakes_seen+=("$flake") - fi - done - if [ ${#flakes_seen[@]} -gt 0 ]; then - # Keep this string and output format in line with the corresponding - # deqp-runner message - echo >&2 'Some known flakes found:' - printf >&2 ' %s\n' "${flakes_seen[@]}" - fi +# Collect all the failures +mapfile -t fails < <(grep -oE "^FAILED .+$" "$LOGFILE" | cut -d' ' -f2 | sort) + +# Save test output for failed tests (before excluding flakes) +for failed_test in "${fails[@]}"; do + cp "$TEST_LOGS/$failed_test.log" "$RESULTS/$failed_test.log" +done + +# Ignore flakes when comparing +for flake in "${flakes[@]}"; do + for idx in "${!fails[@]}"; do + grep -qF "$flake" <<< "${fails[$idx]}" && unset -v 'fails[$idx]' + done +done + +RESULTSFILE="$RESULTS/$GPU_VERSION.txt" +for failed_test in "${fails[@]}"; do + if ! grep -qE "$failed_test end" "$RESULTS/$failed_test.log"; then + test_status=Crash + elif grep -qE "Test failed:" "$RESULTS/$failed_test.log"; then + test_status=Fail + else + test_status=Unknown + fi + printf '%s,%s\n' "$failed_test" "$test_status" +done > "$RESULTSFILE" + +mapfile -t unexpected_results < <(comm -23 "$RESULTSFILE" "$EXPECTATIONFILE") +if [ ${#unexpected_results[@]} -gt 0 ]; then + printf >&2 '\nUnexpected results:\n' + printf >&2 ' %s\n' "${unexpected_results[@]}" + exit 1 fi exit 0 diff --git a/src/amd/ci/radv-tahiti-vkd3d-fails.txt b/src/amd/ci/radv-tahiti-vkd3d-fails.txt index e80c1c32a60..183bdbc1f3f 100644 --- a/src/amd/ci/radv-tahiti-vkd3d-fails.txt +++ b/src/amd/ci/radv-tahiti-vkd3d-fails.txt @@ -1,24 +1 @@ -test_vbv_stride_edge_cases:1605: Test failed: Test 6, index 0, 0.000000 != 4.000000 -test_vbv_stride_edge_cases:1605: Test failed: Test 6, index 1, 0.000000 != 5.000000 -test_vbv_stride_edge_cases:1605: Test failed: Test 6, index 2, 0.000000 != 6.000000 -test_vbv_stride_edge_cases:1605: Test failed: Test 6, index 3, 0.000000 != 7.000000 -test_vbv_stride_edge_cases:1606: Test failed: Test 6, index 4, 0.000000 != 5.000000 -test_vbv_stride_edge_cases:1606: Test failed: Test 6, index 5, 0.000000 != 6.000000 -test_vbv_stride_edge_cases:1606: Test failed: Test 6, index 6, 0.000000 != 7.000000 -test_vbv_stride_edge_cases:1606: Test failed: Test 6, index 7, 0.000000 != 8.000000 -test_vbv_stride_edge_cases:1605: Test failed: Test 8, index 0, 0.000000 != 4.000000 -test_vbv_stride_edge_cases:1605: Test failed: Test 8, index 1, 0.000000 != 5.000000 -test_vbv_stride_edge_cases:1605: Test failed: Test 8, index 2, 0.000000 != 6.000000 -test_vbv_stride_edge_cases:1605: Test failed: Test 8, index 3, 0.000000 != 7.000000 -test_vbv_stride_edge_cases:1606: Test failed: Test 8, index 4, 0.000000 != 6.000000 -test_vbv_stride_edge_cases:1606: Test failed: Test 8, index 5, 0.000000 != 7.000000 -test_vbv_stride_edge_cases:1606: Test failed: Test 8, index 6, 0.000000 != 8.000000 -test_vbv_stride_edge_cases:1606: Test failed: Test 8, index 7, 0.000000 != 9.000000 -test_vbv_stride_edge_cases:1605: Test failed: Test 10, index 0, 0.000000 != 4.000000 -test_vbv_stride_edge_cases:1605: Test failed: Test 10, index 1, 0.000000 != 5.000000 -test_vbv_stride_edge_cases:1605: Test failed: Test 10, index 2, 0.000000 != 6.000000 -test_vbv_stride_edge_cases:1605: Test failed: Test 10, index 3, 0.000000 != 7.000000 -test_vbv_stride_edge_cases:1606: Test failed: Test 10, index 4, 0.000000 != 7.000000 -test_vbv_stride_edge_cases:1606: Test failed: Test 10, index 5, 0.000000 != 8.000000 -test_vbv_stride_edge_cases:1606: Test failed: Test 10, index 6, 0.000000 != 9.000000 -test_vbv_stride_edge_cases:1606: Test failed: Test 10, index 7, 0.000000 != 10.000000 +test_vbv_stride_edge_cases,Fail diff --git a/src/nouveau/ci/nvk-ga106-vkd3d-fails.txt b/src/nouveau/ci/nvk-ga106-vkd3d-fails.txt index 0e31fb4dafa..2d2ca0ad6d1 100644 --- a/src/nouveau/ci/nvk-ga106-vkd3d-fails.txt +++ b/src/nouveau/ci/nvk-ga106-vkd3d-fails.txt @@ -1,689 +1,14 @@ -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 256, height 512, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 0: fmt #47, bpp 4, width 128, height 1024, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 256, height 512, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 1: fmt #50, bpp 4, width 128, height 1024, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 2: fmt #4a, bpp 8, width 128, height 512, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 3: fmt #4d, bpp 8, width 128, height 512, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 4: fmt #53, bpp 8, width 128, height 512, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 5: fmt #60, bpp 8, width 128, height 512, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 6: fmt #5f, bpp 8, width 128, height 512, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 7: fmt #62, bpp 8, width 128, height 512, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 256, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 256, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 64, height 512, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 1: Test failed: Resource size 36864 is larger than expected 32768. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 2: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 3: Test failed: Resource size 102400 is larger than expected 98304. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 4: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 5: Test failed: Resource size 167936 is larger than expected 163840. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 6: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 7: Test failed: Resource size 233472 is larger than expected 229376. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 8: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 9: Test failed: Resource size 299008 is larger than expected 294912. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 10: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 11: Test failed: Resource size 364544 is larger than expected 360448. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 12: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 13: Test failed: Resource size 430080 is larger than expected 425984. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 14: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 15: Test failed: Resource size 495616 is larger than expected 491520. -test_suballocate_small_textures_size:1961:Test 8: fmt #31, bpp 16, width 128, height 128, levels 1, layers 16: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 256, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 256, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 64, height 512, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 1: Test failed: Resource size 36864 is larger than expected 32768. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 2: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 3: Test failed: Resource size 102400 is larger than expected 98304. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 4: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 5: Test failed: Resource size 167936 is larger than expected 163840. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 6: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 7: Test failed: Resource size 233472 is larger than expected 229376. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 8: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 9: Test failed: Resource size 299008 is larger than expected 294912. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 10: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 11: Test failed: Resource size 364544 is larger than expected 360448. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 12: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 13: Test failed: Resource size 430080 is larger than expected 425984. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 14: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 15: Test failed: Resource size 495616 is larger than expected 491520. -test_suballocate_small_textures_size:1961:Test 9: fmt #32, bpp 16, width 128, height 128, levels 1, layers 16: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 256, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 256, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 64, height 512, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 1: Test failed: Resource size 36864 is larger than expected 32768. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 2: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 3: Test failed: Resource size 102400 is larger than expected 98304. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 4: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 5: Test failed: Resource size 167936 is larger than expected 163840. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 6: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 7: Test failed: Resource size 233472 is larger than expected 229376. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 8: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 9: Test failed: Resource size 299008 is larger than expected 294912. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 10: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 11: Test failed: Resource size 364544 is larger than expected 360448. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 12: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 13: Test failed: Resource size 430080 is larger than expected 425984. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 14: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 15: Test failed: Resource size 495616 is larger than expected 491520. -test_suballocate_small_textures_size:1961:Test 10: fmt #30, bpp 16, width 128, height 128, levels 1, layers 16: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 128, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 256, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 1: Test failed: Resource size 36864 is larger than expected 32768. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 2: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 3: Test failed: Resource size 102400 is larger than expected 98304. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 4: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 5: Test failed: Resource size 167936 is larger than expected 163840. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 6: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 7: Test failed: Resource size 233472 is larger than expected 229376. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 8: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 9: Test failed: Resource size 299008 is larger than expected 294912. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 10: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 11: Test failed: Resource size 364544 is larger than expected 360448. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 12: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 13: Test failed: Resource size 430080 is larger than expected 425984. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 14: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 15: Test failed: Resource size 495616 is larger than expected 491520. -test_suballocate_small_textures_size:1961:Test 11: fmt #1c, bpp 32, width 64, height 128, levels 1, layers 16: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 128, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 256, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 1: Test failed: Resource size 36864 is larger than expected 32768. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 2: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 3: Test failed: Resource size 102400 is larger than expected 98304. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 4: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 5: Test failed: Resource size 167936 is larger than expected 163840. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 6: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 7: Test failed: Resource size 233472 is larger than expected 229376. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 8: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 9: Test failed: Resource size 299008 is larger than expected 294912. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 10: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 11: Test failed: Resource size 364544 is larger than expected 360448. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 12: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 13: Test failed: Resource size 430080 is larger than expected 425984. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 14: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 15: Test failed: Resource size 495616 is larger than expected 491520. -test_suballocate_small_textures_size:1961:Test 12: fmt #22, bpp 32, width 64, height 128, levels 1, layers 16: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 128, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 256, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 1: Test failed: Resource size 36864 is larger than expected 32768. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 2: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 3: Test failed: Resource size 102400 is larger than expected 98304. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 4: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 5: Test failed: Resource size 167936 is larger than expected 163840. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 6: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 7: Test failed: Resource size 233472 is larger than expected 229376. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 8: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 9: Test failed: Resource size 299008 is larger than expected 294912. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 10: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 11: Test failed: Resource size 364544 is larger than expected 360448. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 12: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 13: Test failed: Resource size 430080 is larger than expected 425984. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 14: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 15: Test failed: Resource size 495616 is larger than expected 491520. -test_suballocate_small_textures_size:1961:Test 13: fmt #21, bpp 32, width 64, height 128, levels 1, layers 16: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 64, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 14: fmt #a, bpp 64, width 32, height 256, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 64, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 15: fmt #11, bpp 64, width 32, height 256, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 64, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 16: fmt #10, bpp 64, width 32, height 256, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 64, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 1: Test failed: Resource size 77824 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 2: Test failed: Resource size 143360 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 3: Test failed: Resource size 208896 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 4: Test failed: Resource size 274432 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 5: Test failed: Resource size 339968 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 6: Test failed: Resource size 405504 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 7: Test failed: Resource size 471040 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 8: Test failed: Resource size 536576 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 9: Test failed: Resource size 602112 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 10: Test failed: Resource size 667648 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 11: Test failed: Resource size 733184 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 12: Test failed: Resource size 798720 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 13: Test failed: Resource size 864256 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 14: Test failed: Resource size 929792 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 15: Test failed: Resource size 995328 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 17: fmt #f, bpp 64, width 32, height 256, levels 1, layers 16: Test failed: Resource size 1060864 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 18: fmt #3, bpp 128, width 32, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 19: fmt #2, bpp 128, width 32, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 20: fmt #4, bpp 128, width 32, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 1: Test failed: Resource size 69632 is larger than expected 65536. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 2: Test failed: Resource size 135168 is larger than expected 131072. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 3: Test failed: Resource size 200704 is larger than expected 196608. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 4: Test failed: Resource size 266240 is larger than expected 262144. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 5: Test failed: Resource size 331776 is larger than expected 327680. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 6: Test failed: Resource size 397312 is larger than expected 393216. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 7: Test failed: Resource size 462848 is larger than expected 458752. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 8: Test failed: Resource size 528384 is larger than expected 524288. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 9: Test failed: Resource size 593920 is larger than expected 589824. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 10: Test failed: Resource size 659456 is larger than expected 655360. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 11: Test failed: Resource size 724992 is larger than expected 720896. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 12: Test failed: Resource size 790528 is larger than expected 786432. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 13: Test failed: Resource size 856064 is larger than expected 851968. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 14: Test failed: Resource size 921600 is larger than expected 917504. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 15: Test failed: Resource size 987136 is larger than expected 983040. -test_suballocate_small_textures_size:1961:Test 21: fmt #1, bpp 128, width 32, height 128, levels 1, layers 16: Test failed: Resource size 1052672 is larger than expected 1048576. -test_sampler_feedback_implicit_lod_aniso:3428:Test 77: Test failed: Mip 0, expected 0, got 2. +# src/nouveau/vulkan/nvk_cmd_draw.c:1900: nvk_flush_ms_state: Assertion `dyn->ms.rasterization_samples == 0 || dyn->ms.rasterization_samples == render->samples' failed. +test_multisample_rendering,Crash + +# nouveau 0000:2d:00.0: gsp: mmu fault queued +# nouveau 0000:2d:00.0: gsp: rc engn:00000001 chid:24 type:31 scope:1 part:233 +# nouveau 0000:2d:00.0: fifo:c00000:0003:0018:[d3d12[1056]] errored - disabling channel +# nouveau 0000:2d:00.0: d3d12[1056]: channel 24 killed! +test_uav_counter_null_behavior_dxbc,Crash +test_uav_counter_null_behavior_dxil,Crash + +test_suballocate_small_textures,Fail +test_suballocate_small_textures_size,Fail +test_sampler_feedback_implicit_lod,Fail +test_sampler_feedback_implicit_lod_aniso,Fail diff --git a/src/nouveau/ci/nvk-ga106-vkd3d-skips.txt b/src/nouveau/ci/nvk-ga106-vkd3d-skips.txt deleted file mode 100644 index dd2f7a6672f..00000000000 --- a/src/nouveau/ci/nvk-ga106-vkd3d-skips.txt +++ /dev/null @@ -1,9 +0,0 @@ -# nouveau 0000:2d:00.0: gsp: mmu fault queued -# nouveau 0000:2d:00.0: gsp: rc engn:00000001 chid:24 type:31 scope:1 part:233 -# nouveau 0000:2d:00.0: fifo:c00000:0003:0018:[d3d12[1056]] errored - disabling channel -# nouveau 0000:2d:00.0: d3d12[1056]: channel 24 killed! -test_uav_counter_null_behavior_dxbc -test_uav_counter_null_behavior_dxil - -# src/nouveau/vulkan/nvk_cmd_draw.c:1900: nvk_flush_ms_state: Assertion `dyn->ms.rasterization_samples == 0 || dyn->ms.rasterization_samples == render->samples' failed. -test_multisample_rendering