[dynarmic] fix tests

This commit is contained in:
lizzie 2025-07-22 17:36:26 +01:00 committed by crueter
parent ca2d2381dc
commit 0a67c5a324
8 changed files with 318 additions and 188 deletions

View file

@ -10,7 +10,8 @@
TEST_CASE("misaligned load/store do not use page_table when detect_misaligned_access_via_page_table is set", "[a64]") {
A64TestEnv env;
Dynarmic::A64::UserConfig conf{&env};
Dynarmic::A64::UserConfig conf{};
conf.callbacks = &env;
conf.page_table = nullptr;
conf.detect_misaligned_access_via_page_table = 128;
conf.only_detect_misalignment_via_page_table_on_page_boundary = true;