[Lldb-commits] [PATCH] D22213: [test] Fix category-based skipping

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Tue Jul 12 08:14:15 PDT 2016


labath added a comment.

I used the command you mentioned in the original patch:

  $ python -m unittest discover -s test/src -p 'Test*.py'
  FF
  ======================================================================
  FAIL: test_with_function_filter (TestCatchInvalidDecorator.TestCatchInvalidDecorator)
  ----------------------------------------------------------------------
  Traceback (most recent call last):
    File "/usr/local/google/home/labath/ll/lldb/packages/Python/lldbsuite/test_event/test/src/TestCatchInvalidDecorator.py", line 56, in test_with_function_filter
      "At least one job or test error result should have been returned")
  AssertionError: At least one job or test error result should have been returned
  
  ======================================================================
  FAIL: test_with_whole_file (TestCatchInvalidDecorator.TestCatchInvalidDecorator)
  ----------------------------------------------------------------------
  Traceback (most recent call last):
    File "/usr/local/google/home/labath/ll/lldb/packages/Python/lldbsuite/test_event/test/src/TestCatchInvalidDecorator.py", line 37, in test_with_whole_file
      "At least one job or test error result should have been returned")
  AssertionError: At least one job or test error result should have been returned
  
  ----------------------------------------------------------------------
  Ran 2 tests in 0.149s
  
  FAILED (failures=2)

I don't remember seeing any changes here so it's quite possible it never worked in the first place, but I have no idea what could be different about my setup.


http://reviews.llvm.org/D22213





More information about the lldb-commits mailing list