Skip to content
  • Johnny Chen's avatar
    Add an infrastructure to mark the Python APIs only test using a decorator. · 7c7d936e
    Johnny Chen authored
    Example:
    
        @python_api_test
        def test_evaluate_expression_python(self):
            """Test SBFrame.EvaluateExpression() API for evaluating an expression."""
        ...
    
    The opposite of Python APIs only test is an lldb command line test, which sends
    commands to the lldb command interpreter.  Add a '-a' option to the test driver
    to skip Python API only tests.
    
    Modify TestExprs.py to mark a test as @python_api_test and remove an @expectedFailure
    decorator as the bug has been fixed.
    
    llvm-svn: 121442
    7c7d936e
Loading