Commit 5c1d544a authored by Kevin Modzelewski's avatar Kevin Modzelewski

No more reffail in test/tests/ and test/cpython/

But still some in test/integration
parent 30c435cb
# expected: reffail # expected: fail
# - takes too long # - takes too long
# Copyright (c) 2004 Python Software Foundation. # Copyright (c) 2004 Python Software Foundation.
# All rights reserved. # All rights reserved.
......
# expected: refstatfail
# skip-if: '-O' in EXTRA_JIT_ARGS # skip-if: '-O' in EXTRA_JIT_ARGS
# expected: statfail
# statcheck: 4 <= noninit_count('num_deopt') < 50 # statcheck: 4 <= noninit_count('num_deopt') < 50
# statcheck: 1 <= stats["num_osr_exits"] <= 2 # statcheck: 1 <= stats["num_osr_exits"] <= 2
......
# expected: refstatfail
# skip-if: '-O' in EXTRA_JIT_ARGS # skip-if: '-O' in EXTRA_JIT_ARGS
# statcheck: 4 <= noninit_count('num_deopt') < 50 # statcheck: 4 <= noninit_count('num_deopt') < 50
# statcheck: 1 <= stats["num_osr_exits"] <= 2 # statcheck: 1 <= stats["num_osr_exits"] <= 2
......
...@@ -217,8 +217,6 @@ def get_test_options(fn, check_stats, run_memcheck): ...@@ -217,8 +217,6 @@ def get_test_options(fn, check_stats, run_memcheck):
if opts.expected == "reffail": if opts.expected == "reffail":
opts.expected = "fail" opts.expected = "fail"
if opts.expected == "refstatfail":
opts.expected = "statfail"
if not opts.skip: if not opts.skip:
# consider other reasons for skipping file # consider other reasons for skipping file
......
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