From eff738f7cf7d65f344e70e572fd3210ba22275e9 Mon Sep 17 00:00:00 2001 From: Jakub Kuderski Date: Fri, 14 Jul 2017 23:49:12 +0000 Subject: [PATCH] [Dominators] Temporarily disable a flaky unit test The DominatorTree.InsertDeleteExhaustive uses a RNG with a constant seed to generate different sequences of updates. The test fails on some buildbots and this patch disables it for now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@308070 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/IR/DominatorTreeTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/IR/DominatorTreeTest.cpp b/unittests/IR/DominatorTreeTest.cpp index aa9042a84c2..ddb61464209 100644 --- a/unittests/IR/DominatorTreeTest.cpp +++ b/unittests/IR/DominatorTreeTest.cpp @@ -538,7 +538,7 @@ TEST(DominatorTree, InsertDelete) { } } -TEST(DominatorTree, InsertDeleteExhaustive) { +TEST(DominatorTree, DISABLED_InsertDeleteExhaustive) { std::vector Arcs = { {"1", "2"}, {"2", "3"}, {"3", "4"}, {"4", "5"}, {"5", "6"}, {"5", "7"}, {"3", "8"}, {"8", "9"}, {"9", "10"}, {"8", "11"}, {"11", "12"}}; -- 2.40.0