Skip to content

Commit

Permalink
cpychecker: exclude various tests for debug builds of python
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmalcolm committed Mar 26, 2012
1 parent a23816a commit a29cf4f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions run-test-suite.py
Expand Up @@ -430,12 +430,19 @@ def exclude_tests_below(path):
exclude_test('tests/cpychecker/refcounts/PyDict_SetItem/incorrect')
exclude_test('tests/cpychecker/refcounts/PyDict_SetItemString/correct')
exclude_test('tests/cpychecker/refcounts/PyDict_SetItemString/incorrect')
exclude_test('tests/cpychecker/refcounts/PyFloat_AsDouble/correct_PyFloatObject')
exclude_test('tests/cpychecker/refcounts/PyList_Append/correct')
exclude_test('tests/cpychecker/refcounts/PyList_Append/incorrect')
exclude_test('tests/cpychecker/refcounts/PyList_Append/incorrect-loop')
exclude_test('tests/cpychecker/refcounts/PyList_Append/null-newitem')
exclude_test('tests/cpychecker/refcounts/PyList_Append/ticket-22')
exclude_test('tests/cpychecker/refcounts/PyList_SET_ITEM_macro/correct')
exclude_test('tests/cpychecker/refcounts/PyList_SET_ITEM_macro/correct_multiple')
exclude_test('tests/cpychecker/refcounts/PyList_SET_ITEM_macro/incorrect_multiple')
exclude_test('tests/cpychecker/refcounts/PyList_Size/known-size')
exclude_test('tests/cpychecker/refcounts/PySequence_SetItem/correct')
exclude_test('tests/cpychecker/refcounts/PySequence_SetItem/incorrect')
exclude_test('tests/cpychecker/refcounts/PySequence_Size/correct')
exclude_test('tests/cpychecker/refcounts/PyString_AsString/correct')
exclude_test('tests/cpychecker/refcounts/PyString_AsString/incorrect')
exclude_test('tests/cpychecker/refcounts/PySys_SetObject/correct')
Expand All @@ -449,10 +456,15 @@ def exclude_tests_below(path):
exclude_test('tests/cpychecker/refcounts/Py_BuildValue/correct-code-O')
exclude_test('tests/cpychecker/refcounts/correct_decref')
exclude_test('tests/cpychecker/refcounts/loop_n_times')
exclude_test('tests/cpychecker/refcounts/loops/complex-loop-conditional-1')
exclude_test('tests/cpychecker/refcounts/loops/complex-loop-conditional-2')
exclude_test('tests/cpychecker/refcounts/module_handling')
exclude_test('tests/cpychecker/refcounts/object_from_callback')
exclude_test('tests/cpychecker/refcounts/passing_dead_object')
exclude_test('tests/cpychecker/refcounts/returning_dead_object')
exclude_test('tests/cpychecker/refcounts/ticket-20')
exclude_test('tests/cpychecker/refcounts/unrecognized_function2')
exclude_test('tests/cpychecker/refcounts/unrecognized_function4')
exclude_test('tests/cpychecker/refcounts/use_after_dealloc')
exclude_test('tests/examples/spelling-checker')

Expand Down

0 comments on commit a29cf4f

Please sign in to comment.