diff options
author | Merry <[email protected]> | 2022-11-26 16:50:00 +0000 |
---|---|---|
committer | Liam <[email protected]> | 2022-12-03 11:16:26 -0500 |
commit | e74e03010b9029f4edea303764827a474bd831e2 (patch) | |
tree | 88fe3d50dba31ff97c5985c7136b6695c41e842d /tests | |
parent | 01a9a12c84297bd828e0b84864778e4f2b4b7c24 (diff) | |
download | dynarmic-e74e03010b9029f4edea303764827a474bd831e2.tar.gz dynarmic-e74e03010b9029f4edea303764827a474bd831e2.zip |
[TEST] test_generator: Test A64
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_generator.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/test_generator.cpp b/tests/test_generator.cpp index d54d719c..91bbdbee 100644 --- a/tests/test_generator.cpp +++ b/tests/test_generator.cpp @@ -649,12 +649,14 @@ int main(int, char*[]) { TestArm(1, 1); TestA64(1, 1); - TestThumb(1, 100000); - TestArm(1, 100000); - TestThumb(5, 100000); - TestArm(5, 100000); - TestThumb(1024, 10000); - TestArm(1024, 10000); + TestA64(1, 10000); + + // TestThumb(1, 100000); + // TestArm(1, 100000); + // TestThumb(5, 100000); + // TestArm(5, 100000); + // TestThumb(1024, 10000); + // TestArm(1024, 10000); return 0; } |