[Lldb-commits] [PATCH] D18481: Add argument to expectedFailureAll decorator to xfail for environment variables, and xfail tests for hard float abi and -mthumb on android arm

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 29 07:29:47 PDT 2016


labath added a comment.

So, the way I would achieve this is to have a way to specify "i want to run the tests with hard-float", or "I want to use thumb instruction set" when running dotest.py and then based on this information, set the correct compiler flags **and** xfail/skip tests. When we do it this way, we could actually fix some of the tests you are trying to skip here. E.g. the only reason TestLldbGdbServer is failing for thumb is because the test does not know the instruction set and so it cannot put the right kind of a breakpoint. As for the dotest flags, we could either invent some new flags (`--isa` and `--abi`, perhaps?) or shove this information into `--arch` somehow (`--arch=arm-softfp`, `--arch=thumb-hardfp` ?).


http://reviews.llvm.org/D18481





More information about the lldb-commits mailing list