X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FExecutionEngine%2Flit.local.cfg;h=f0343263dba6169956d737cd724bbd186c0090b7;hb=6931055232eb2836dfc3e6dc51f06cee80dadf4b;hp=19eebc0ac7ac345747856190cdcccb57bf60eec6;hpb=0f0c411079cd21bb3a81a1b70bf8c67539a16c22;p=oota-llvm.git diff --git a/test/ExecutionEngine/lit.local.cfg b/test/ExecutionEngine/lit.local.cfg index 19eebc0ac7a..f0343263dba 100644 --- a/test/ExecutionEngine/lit.local.cfg +++ b/test/ExecutionEngine/lit.local.cfg @@ -1 +1,12 @@ config.suffixes = ['.ll', '.c', '.cpp'] + +def getRoot(config): + if not config.parent: + return config + return getRoot(config.parent) + +root = getRoot(config) + +if root.host_arch in ['PowerPC']: + config.unsupported = True +