summaryrefslogtreecommitdiff
path: root/clang-tools-extra/test/clang-tidy/select-checks.cpp
blob: 791def75b18bc024f7c2e62e9123f2b226cb3ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: clang-tidy %s -checks='-*,llvm-namespace-*' -- 2>&1 | FileCheck -implicit-check-not='{{warning:|error:}}' %s
// RUN: not clang-tidy %s -checks='-*,an-unknown-check' -- 2>&1 | FileCheck -implicit-check-not='{{warning:|error:}}' -check-prefix=CHECK2 %s

// CHECK2: Error: no checks enabled.

namespace i {
}
// CHECK: :[[@LINE-1]]:2: warning: namespace 'i' not terminated with a closing comment [llvm-namespace-comment]

// Expect no warnings from the google-explicit-constructor check:
class A { A(int i); };