blob: 0152e9d94da435bebced29477ce2a0f1d3e4ba2b [file] [log] [blame]
Larry Hastings3a907972013-11-23 14:49:22 -08001import dis
Larry Hastingsc8635b42013-11-23 16:11:17 -08002from test.support import run_unittest, 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
19def test_main():
20 run_unittest(OpcodeTests)
21
22if __name__ == "__main__":
23 test_main()