Skip to content

Commit

Permalink
Add some tests for #492
Browse files Browse the repository at this point in the history
  • Loading branch information
zrax committed Jun 23, 2024
1 parent ed49554 commit d10c47a
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 0 deletions.
Binary file added tests/compiled/test_integers_py3.3.12.pyc
Binary file not shown.
Binary file added tests/compiled/test_integers_py3.3.5.pyc
Binary file not shown.
31 changes: 31 additions & 0 deletions tests/input/test_integers_py3.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
"""
test_integers.py -- source test pattern for integers
This source is part of the decompyle test suite.
Snippet taken from python libs's test_class.py
decompyle is a Python byte-code decompiler
See http://www.goebel-consult.de/decompyle/ for download and
for further information
"""

import sys

i = 1
i = 42
i = -1
i = -42
i = sys.maxsize
minsize = -sys.maxsize - 1
print(sys.maxsize)
print(minsize)
print(minsize - 1)
print()
i = -2147483647
print(i, repr(i))
i = i - 1
print(i, repr(i))
i = -0x80000000
print(i, repr(i))
i = -0x80000001
print(i, repr(i))
20 changes: 20 additions & 0 deletions tests/tokenized/test_integers_py3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
'\ntest_integers.py -- source test pattern for integers\n\nThis source is part of the decompyle test suite.\nSnippet taken from python libs\'s test_class.py\n\ndecompyle is a Python byte-code decompiler\nSee http://www.goebel-consult.de/decompyle/ for download and\nfor further information\n' <EOL>
import sys <EOL>
i = 1 <EOL>
i = 42 <EOL>
i = - 1 <EOL>
i = - 42 <EOL>
i = sys . maxsize <EOL>
minsize = - ( sys . maxsize ) - 1 <EOL>
print ( sys . maxsize ) <EOL>
print ( minsize ) <EOL>
print ( minsize - 1 ) <EOL>
print ( ) <EOL>
i = - 2147483647 <EOL>
print ( i , repr ( i ) ) <EOL>
i = i - 1 <EOL>
print ( i , repr ( i ) ) <EOL>
i = - 2147483648 <EOL>
print ( i , repr ( i ) ) <EOL>
i = - 0 x80000001 <EOL>
print ( i , repr ( i ) ) <EOL>
Binary file added tests/xfail/test_integers_py3.3.0.pyc
Binary file not shown.

0 comments on commit d10c47a

Please sign in to comment.