From: Ted Kremenek Date: Mon, 2 Jul 2012 21:02:22 +0000 (+0000) Subject: Make this test invariant to future changes of the max loop unrolling count. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=24364151180895f90018b6e373e51c0082ecff35;p=clang Make this test invariant to future changes of the max loop unrolling count. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159585 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/traversal-algorithm.mm b/test/Analysis/traversal-algorithm.mm index e8a36eafc7..8a3dc8b3a2 100644 --- a/test/Analysis/traversal-algorithm.mm +++ b/test/Analysis/traversal-algorithm.mm @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -analyze -analyzer-checker=debug.DumpTraversal -std=c++11 %s | FileCheck -check-prefix=DFS %s +// RUN: %clang_cc1 -analyze -analyzer-checker=debug.DumpTraversal -analyzer-max-loop 4 -std=c++11 %s | FileCheck -check-prefix=DFS %s int a(); int b();