blob: 1075decc2704207203bb17737316adff4b770970 [file] [log] [blame]
Larry Hastings3a907972013-11-23 14:49:22 -08001import dis
Zachary Ware38c707e2015-04-13 15:00:43 -05002from test.support import import_module
Larry Hastings3a907972013-11-23 14:49:22 -08003import unittest
4
Larry Hastingsc8635b42013-11-23 16:11:17 -08005_opcode = import_module("_opcode")
6
Larry Hastings3a907972013-11-23 14:49:22 -08007class OpcodeTests(unittest.TestCase):
8
9 def test_stack_effect(self):
10 self.assertEqual(_opcode.stack_effect(dis.opmap['POP_TOP']), -1)
11 self.assertEqual(_opcode.stack_effect(dis.opmap['DUP_TOP_TWO']), 2)
12 self.assertEqual(_opcode.stack_effect(dis.opmap['BUILD_SLICE'], 0), -1)
13 self.assertEqual(_opcode.stack_effect(dis.opmap['BUILD_SLICE'], 1), -1)
14 self.assertEqual(_opcode.stack_effect(dis.opmap['BUILD_SLICE'], 3), -2)
15 self.assertRaises(ValueError, _opcode.stack_effect, 30000)
16 self.assertRaises(ValueError, _opcode.stack_effect, dis.opmap['BUILD_SLICE'])
17 self.assertRaises(ValueError, _opcode.stack_effect, dis.opmap['POP_TOP'], 0)
18
Larry Hastings3a907972013-11-23 14:49:22 -080019if __name__ == "__main__":
Zachary Ware38c707e2015-04-13 15:00:43 -050020 unittest.main()