]> granicus.if.org Git - llvm/commitdiff
[Dominators] Temporarily disable a flaky unit test
authorJakub Kuderski <kubakuderski@gmail.com>
Fri, 14 Jul 2017 23:49:12 +0000 (23:49 +0000)
committerJakub Kuderski <kubakuderski@gmail.com>
Fri, 14 Jul 2017 23:49:12 +0000 (23:49 +0000)
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

index aa9042a84c255986fda7059554e4cd5c16dd085b..ddb61464209e20fc1c46130906f502c51620af51 100644 (file)
@@ -538,7 +538,7 @@ TEST(DominatorTree, InsertDelete) {
   }
 }
 
-TEST(DominatorTree, InsertDeleteExhaustive) {
+TEST(DominatorTree, DISABLED_InsertDeleteExhaustive) {
   std::vector<CFGBuilder::Arc> Arcs = {
       {"1", "2"}, {"2", "3"}, {"3", "4"},  {"4", "5"},  {"5", "6"},  {"5", "7"},
       {"3", "8"}, {"8", "9"}, {"9", "10"}, {"8", "11"}, {"11", "12"}};