Skip to content

Commit ba4fa6d

Browse files
committed
Disable more selftests on 4.6
1 parent 8e0729e commit ba4fa6d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

run-test-suite.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -632,6 +632,25 @@ def exclude_tests_below(path):
632632
# For now, disable many of the tests on 4.6.*:
633633
if GCC_VERSION == 4006:
634634
exclude_tests_below('tests/cpychecker/refcounts')
635+
exclude_test('tests/cpychecker/absinterp/exceptions')
636+
exclude_test('tests/plugin/array-type')
637+
exclude_test('tests/plugin/translation-units')
638+
639+
# Other tests that fail on 4.6:
640+
if GCC_VERSION == 4006:
641+
# some minor changes to stdout:
642+
exclude_test('tests/examples/cplusplus/classes')
643+
644+
# presence of stdout line:
645+
# :py:class:`gcc.WidenLshiftExpr` `w<<`
646+
exclude_test('tests/plugin/expressions/get_symbol')
647+
648+
# too fragile?
649+
exclude_test('tests/plugin/gimple-walk-tree/dump-all')
650+
651+
# repr() for gcc.CaseLabelExpr and gcc.GimpleLabel
652+
exclude_test('tests/plugin/switch')
653+
635654

636655
def run_one_test(testdir):
637656
try:

0 commit comments

Comments
 (0)