diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2023-02-09 00:31:52 +0100 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2023-02-09 01:37:23 +0100 |
commit | eb9f16dce48f517ea33aad4a59e369bc51fdf26a (patch) | |
tree | b65ead0a31c8539448b2c02361a82ecdcbcdf51b /src/tests | |
parent | Merge pull request #9747 from german77/SetSupportedNpadIdTypes (diff) | |
download | yuzu-eb9f16dce48f517ea33aad4a59e369bc51fdf26a.tar yuzu-eb9f16dce48f517ea33aad4a59e369bc51fdf26a.tar.gz yuzu-eb9f16dce48f517ea33aad4a59e369bc51fdf26a.tar.bz2 yuzu-eb9f16dce48f517ea33aad4a59e369bc51fdf26a.tar.lz yuzu-eb9f16dce48f517ea33aad4a59e369bc51fdf26a.tar.xz yuzu-eb9f16dce48f517ea33aad4a59e369bc51fdf26a.tar.zst yuzu-eb9f16dce48f517ea33aad4a59e369bc51fdf26a.zip |
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/video_core/buffer_base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/video_core/buffer_base.cpp b/src/tests/video_core/buffer_base.cpp index 1275cca24..734dbf4b6 100644 --- a/src/tests/video_core/buffer_base.cpp +++ b/src/tests/video_core/buffer_base.cpp @@ -538,7 +538,7 @@ TEST_CASE("BufferBase: Cached write downloads") { int num = 0; buffer.ForEachDownloadRangeAndClear(c, WORD, [&](u64 offset, u64 size) { ++num; }); buffer.ForEachUploadRange(c, WORD, [&](u64 offset, u64 size) { ++num; }); - REQUIRE(num == 1); + REQUIRE(num == 0); REQUIRE(!buffer.IsRegionCpuModified(c + PAGE, PAGE)); REQUIRE(!buffer.IsRegionGpuModified(c + PAGE, PAGE)); buffer.FlushCachedWrites(); |