Lines Matching +full:clang +full:- +full:everything
1 // RUN: not clang-tidy %s \
2 // RUN: -checks="-*,bugprone-suspicious-semicolon" -- -DERROR 2>&1 \
3 // RUN: | FileCheck %s -check-prefix=CHECK-ERROR \
4 // RUN: -implicit-check-not="{{warning|error}}:"
5 // RUN: not clang-tidy %s \
6 // RUN: -checks="-*,bugprone-suspicious-semicolon,clang-diagnostic*" \
7 // RUN: -- -DWERROR -Wno-everything -Werror=unused-variable 2>&1 \
8 // RUN: | FileCheck %s -check-prefix=CHECK-WERROR \
9 // RUN: -implicit-check-not="{{warning|error}}:"
18 …// CHECK-WERROR: :[[@LINE-1]]:11: warning: potentially unintended semicolon [bugprone-suspicious-s…
21 // CHECK-ERROR: :[[@LINE-1]]:8: error: expected ';' at end of declaration [clang-diagnostic-error]
24 // CHECK-WERROR: :[[@LINE-1]]:7: error: unused variable 'a' [clang-diagnostic-unused-variable]