aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/tools/llvm-cfi-verify/GraphBuilder.cpp
diff options
context:
space:
mode:
authorMitch Phillips <mitchphillips@outlook.com>2017-10-23 20:54:01 +0000
committerMitch Phillips <mitchphillips@outlook.com>2017-10-23 20:54:01 +0000
commitd9af383d58ef8b0b4e9a65af862cae61d99ca44c (patch)
tree4ecba5d89201bcd8e168b2a19b9418e2c5cc013a /llvm/unittests/tools/llvm-cfi-verify/GraphBuilder.cpp
parent8a0e4bc97283dfb9f101b5dc0aefd01dc0937b4f (diff)
downloadllvm-d9af383d58ef8b0b4e9a65af862cae61d99ca44c.zip
llvm-d9af383d58ef8b0b4e9a65af862cae61d99ca44c.tar.gz
llvm-d9af383d58ef8b0b4e9a65af862cae61d99ca44c.tar.bz2
Made llvm-cfi-verify not execute unit tests on non-x86 builds.
Patched out from D38427. Reviewers: vlad.tsyrklevich Reviewed By: vlad.tsyrklevich Subscribers: llvm-commits, kcc, pcc, mgorny Differential Revision: https://reviews.llvm.org/D39197 llvm-svn: 316375
Diffstat (limited to 'llvm/unittests/tools/llvm-cfi-verify/GraphBuilder.cpp')
-rw-r--r--llvm/unittests/tools/llvm-cfi-verify/GraphBuilder.cpp37
1 files changed, 35 insertions, 2 deletions
diff --git a/llvm/unittests/tools/llvm-cfi-verify/GraphBuilder.cpp b/llvm/unittests/tools/llvm-cfi-verify/GraphBuilder.cpp
index 5cff657..b200677 100644
--- a/llvm/unittests/tools/llvm-cfi-verify/GraphBuilder.cpp
+++ b/llvm/unittests/tools/llvm-cfi-verify/GraphBuilder.cpp
@@ -126,11 +126,18 @@ public:
class BasicGraphBuilderTest : public ::testing::Test {
protected:
virtual void SetUp() {
- if (Analysis.initialiseDisassemblyMembers()) {
- FAIL() << "Failed to initialise FileAnalysis.";
+ SuccessfullyInitialised = true;
+ if (auto Err = Analysis.initialiseDisassemblyMembers()) {
+ handleAllErrors(std::move(Err), [&](const UnsupportedDisassembly &E) {
+ SuccessfullyInitialised = false;
+ outs()
+ << "Note: CFIVerifyTests are disabled due to lack of x86 support "
+ "on this build.\n";
+ });
}
}
+ bool SuccessfullyInitialised;
ELFx86TestFileAnalysis Analysis;
};
@@ -141,6 +148,8 @@ MATCHER_P2(HasPath, Result, Matcher, "has path " + PrintToString(Matcher)) {
}
TEST_F(BasicGraphBuilderTest, BuildFlowGraphTestSinglePathFallthroughUd2) {
+ if (!SuccessfullyInitialised)
+ return;
Analysis.parseSectionContents(
{
0x75, 0x02, // 0: jne 4 [+2]
@@ -165,6 +174,8 @@ TEST_F(BasicGraphBuilderTest, BuildFlowGraphTestSinglePathFallthroughUd2) {
}
TEST_F(BasicGraphBuilderTest, BuildFlowGraphTestSinglePathJumpUd2) {
+ if (!SuccessfullyInitialised)
+ return;
Analysis.parseSectionContents(
{
0x75, 0x02, // 0: jne 4 [+2]
@@ -189,6 +200,8 @@ TEST_F(BasicGraphBuilderTest, BuildFlowGraphTestSinglePathJumpUd2) {
}
TEST_F(BasicGraphBuilderTest, BuildFlowGraphTestDualPathDualUd2) {
+ if (!SuccessfullyInitialised)
+ return;
Analysis.parseSectionContents(
{
0x75, 0x03, // 0: jne 5 [+3]
@@ -226,6 +239,8 @@ TEST_F(BasicGraphBuilderTest, BuildFlowGraphTestDualPathDualUd2) {
}
TEST_F(BasicGraphBuilderTest, BuildFlowGraphTestDualPathSingleUd2) {
+ if (!SuccessfullyInitialised)
+ return;
Analysis.parseSectionContents(
{
0x75, 0x05, // 0: jne 7 [+5]
@@ -262,6 +277,8 @@ TEST_F(BasicGraphBuilderTest, BuildFlowGraphTestDualPathSingleUd2) {
}
TEST_F(BasicGraphBuilderTest, BuildFlowGraphFailures) {
+ if (!SuccessfullyInitialised)
+ return;
Analysis.parseSectionContents(
{
0x90, // 0: nop
@@ -282,6 +299,8 @@ TEST_F(BasicGraphBuilderTest, BuildFlowGraphFailures) {
}
TEST_F(BasicGraphBuilderTest, BuildFlowGraphNoXrefs) {
+ if (!SuccessfullyInitialised)
+ return;
Analysis.parseSectionContents(
{
0xeb, 0xfe, // 0: jmp 0 [-2]
@@ -295,6 +314,8 @@ TEST_F(BasicGraphBuilderTest, BuildFlowGraphNoXrefs) {
}
TEST_F(BasicGraphBuilderTest, BuildFlowGraphConditionalInfiniteLoop) {
+ if (!SuccessfullyInitialised)
+ return;
Analysis.parseSectionContents(
{
0x75, 0xfe, // 0: jne 0 [-2]
@@ -315,6 +336,8 @@ TEST_F(BasicGraphBuilderTest, BuildFlowGraphConditionalInfiniteLoop) {
}
TEST_F(BasicGraphBuilderTest, BuildFlowGraphUnconditionalInfiniteLoop) {
+ if (!SuccessfullyInitialised)
+ return;
Analysis.parseSectionContents(
{
0x75, 0x02, // 0: jne 4 [+2]
@@ -337,6 +360,8 @@ TEST_F(BasicGraphBuilderTest, BuildFlowGraphUnconditionalInfiniteLoop) {
}
TEST_F(BasicGraphBuilderTest, BuildFlowGraphNoFlowsToIndirection) {
+ if (!SuccessfullyInitialised)
+ return;
Analysis.parseSectionContents(
{
0x75, 0x00, // 0: jne 2 [+0]
@@ -350,6 +375,8 @@ TEST_F(BasicGraphBuilderTest, BuildFlowGraphNoFlowsToIndirection) {
}
TEST_F(BasicGraphBuilderTest, BuildFlowGraphLengthExceededUpwards) {
+ if (!SuccessfullyInitialised)
+ return;
Analysis.parseSectionContents(
{
0x75, 0x06, // 0: jne 8 [+6]
@@ -377,6 +404,8 @@ TEST_F(BasicGraphBuilderTest, BuildFlowGraphLengthExceededUpwards) {
}
TEST_F(BasicGraphBuilderTest, BuildFlowGraphLengthExceededDownwards) {
+ if (!SuccessfullyInitialised)
+ return;
Analysis.parseSectionContents(
{
0x75, 0x02, // 0: jne 4 [+2]
@@ -411,6 +440,8 @@ TEST_F(BasicGraphBuilderTest, BuildFlowGraphLengthExceededDownwards) {
// paths correctly. We don't need to recalculate the flow from 0x2 -> 0x3 as it
// should only need to be generated once.
TEST_F(BasicGraphBuilderTest, BuildFlowGraphWithRepeatedWork) {
+ if (!SuccessfullyInitialised)
+ return;
Analysis.parseSectionContents(
{
0x75, 0x05, // 0: jne 7 [+5]
@@ -449,6 +480,8 @@ TEST_F(BasicGraphBuilderTest, BuildFlowGraphWithRepeatedWork) {
}
TEST_F(BasicGraphBuilderTest, BuildFlowGraphComplexExample) {
+ if (!SuccessfullyInitialised)
+ return;
// The following code has this graph:
// +----------+ +--------------+
// | 20 | <--- | 0 |