The https://lab.llvm.org/buildbot/#/builders/107 builder is failing on this
testcase, but doesn't produce a helpful error message yet. Disabling for now
until I have time to dig in further.
#include "llvm-c/Orc.h"
#include "gtest/gtest.h"
+#include "llvm/ADT/Triple.h"
+
using namespace llvm;
// OrcCAPITestBase contains several helper methods and pointers for unit tests
protected:
static bool isSupported(StringRef Triple) {
- if (Triple.startswith("armv7"))
+ // TODO: Print error messages in failure logs, use them to audit this list.
+ // Some architectures may be unsupportable or missing key components, but
+ // some may just be failing due to bugs in this testcase.
+ if (Triple.startswith("armv7") ||
+ Triple.startswith("armv8l"))
return false;
return true;
}