Commit fa64047a authored by Kevin Modzelewski's avatar Kevin Modzelewski

Somewhat-enable random_test.py, and reduce size of interp2_small.py

random_test.py is running into the same issue as _random_test2.py,
of the rewrites failing.  Will deal with that next.
parent 6c9bb239
......@@ -104,7 +104,7 @@ def run(node):
visit(InterpVisitor(), node)
prog = [
AstAssign("x", 1000),
AstAssign("x", 500),
AstAssign("t", 0),
AstWhile("x", [
AstAssign("t", AstBinop("t", "x", '+')),
......@@ -117,7 +117,7 @@ run(prog)
prog = [
AstAssign("i", 2),
AstAssign("t", 0),
AstWhile(AstBinop("i", 100, '<'), [
AstWhile(AstBinop("i", 60, '<'), [
AstAssign("j", 2),
AstAssign("good", 1),
AstWhile(AstBinop(AstBinop("j", "j", '*'), "i", "<="), [
......
# expected: fail
# - wip
# allow-warning: converting unicode literal to str
# skip-if: IMAGE != 'pyston_dbg'
# fail-if: '-n' in EXTRA_JIT_ARGS or '-O' in EXTRA_JIT_ARGS
# - failing to rewrite
import random
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment