summaryrefslogtreecommitdiffstats
path: root/test/Analysis/disable-all-checks.c
blob: fba53429ab5eb84a380fdfd05ec0ad5499a1d3ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-store=region \
// RUN:   -analyzer-disable-all-checks -verify %s
//
// RUN: %clang_analyze_cc1 -analyzer-disable-all-checks -analyzer-checker=core \
// RUN:   -analyzer-store=region -verify %s
//
// RUN: %clang_analyze_cc1 -analyzer-disable-all-checks -verify %s
//
// RUN: not %clang_analyze_cc1 -analyzer-checker=core -analyzer-store=region \
// RUN:   -analyzer-disable-checker non.existant.Checker -verify %s 2>&1 \
// RUN:   | FileCheck %s
//
// expected-no-diagnostics

// CHECK: no analyzer checkers are associated with 'non.existant.Checker'
// CHECK: use -analyzer-disable-all-checks to disable all static analyzer checkers
int buggy() {
  int x = 0;
  return 5/x; // no warning
}