Trying to reduce the complexity of all our decorators, I decided to make most of them use skipTestIfFn. Unfortunately there's some issues with my patch. I'm not really an expert with all these decorators and multiple levels of decorating, but something about that is causing some issues.
For example, I get this now when running the test suite:
UNEXPECTED SUCCESS: test_Hc_then_Csignal_signals_correct_thread_launch_debugserver_dwarf (tools\lldb-server\TestLldbGdbServer.py)
UNEXPECTED SUCCESS: test_with_attach_to_process_with_id_api_dwarf (python_api\hello_world\TestHelloWorld.py)
UNEXPECTED SUCCESS: test_with_attach_to_process_with_name_api_dwarf (python_api\hello_world\TestHelloWorld.py)
But the tests are still failing. Would someone mind helping me figure out what's wrong here?
This will not cause the class to be skipped, but it will still not achive the desired effect when used on a class. Please leave the safeguard in.
I like the simplification of the wrapper btw.