xref: /llvm-project/clang-tools-extra/test/clang-tidy/infrastructure/nolintbeginend-multiple-TUs.cpp (revision 12babb08189cc1ca84d7fbb33d3c9726583b2e5a)
1 // RUN: clang-tidy %S/Inputs/nolintbeginend/1st-translation-unit.cpp %S/Inputs/nolintbeginend/2nd-translation-unit.cpp --checks='-*,google-explicit-constructor' -- 2>&1 | FileCheck %s
2 
3 // CHECK-NOT: 1st-translation-unit.cpp:2:11: warning: single-argument constructors must be marked explicit
4 // CHECK: 1st-translation-unit.cpp:5:11: warning: single-argument constructors must be marked explicit
5 // CHECK: 2nd-translation-unit.cpp:2:11: warning: single-argument constructors must be marked explicit
6 // CHECK-NOT: 2nd-translation-unit.cpp:5:11: warning: single-argument constructors must be marked explicit
7