blob: f59d8515823cce2658d055f59a8e3cfb09ca48e0 [file] [log] [blame]
Kristof Umanne8df27d2019-05-23 20:47:28 +00001// RUN: %clang_cc1 -analyzer-checker-option-help 2>&1 | FileCheck %s
2
3// CHECK: OVERVIEW: Clang Static Analyzer Checker and Package Option List
4//
5// CHECK: USAGE: -analyzer-config <OPTION1=VALUE,OPTION2=VALUE,...>
6//
7// CHECK: -analyzer-config OPTION1=VALUE, -analyzer-config
8// CHECK-SAME: OPTION2=VALUE, ...
9//
10// CHECK: OPTIONS:
11//
12// CHECK: alpha.clone.CloneChecker:MinimumCloneComplexity
13// CHECK-SAME: (int) Ensures that every clone has at least
14// CHECK: the given complexity. Complexity is here
15// CHECK: defined as the total amount of children
16// CHECK: of a statement. This constraint assumes
17// CHECK: the first statement in the group is representative
18// CHECK: for all other statements in the group in
19// CHECK: terms of complexity. (default: 50)