Minor Python regress fixes (#2030)

* Fix erronous method name

* Uncomment known failures

* Opportunistic improvements
This commit is contained in:
Eli
2024-10-13 11:35:42 +03:00
committed by GitHub
parent 7e32864774
commit fea3411803
6 changed files with 32 additions and 26 deletions

View File

@@ -100,7 +100,7 @@ class TestSparcRegRead(regress.RegressTest):
self.assertEqual(1, uc.reg_read(UC_SPARC_REG_I7))
# BUG: PC seems to get reset to 4 when done executing
# self.assertEqual(4 * 32, uc.reg_read(UC_SPARC_REG_PC)) # make sure we executed all instructions
self.assertEqual(4 * 32, uc.reg_read(UC_SPARC_REG_PC)) # make sure we executed all instructions
self.assertEqual(101, uc.reg_read(UC_SPARC_REG_SP))
self.assertEqual(201, uc.reg_read(UC_SPARC_REG_FP))