diff options
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/clang-tidy-enable-check-profile-one-tu.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/clang-tidy-enable-check-profile-one-tu.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/clang-tools-extra/test/clang-tidy/clang-tidy-enable-check-profile-one-tu.cpp b/clang-tools-extra/test/clang-tidy/clang-tidy-enable-check-profile-one-tu.cpp index 18137ba4e14..df4cb93f2ce 100644 --- a/clang-tools-extra/test/clang-tidy/clang-tidy-enable-check-profile-one-tu.cpp +++ b/clang-tools-extra/test/clang-tidy/clang-tidy-enable-check-profile-one-tu.cpp @@ -1,16 +1,22 @@ // RUN: clang-tidy -enable-check-profile -checks='-*,readability-function-size' %s -- 2>&1 | FileCheck --match-full-lines -implicit-check-not='{{warning:|error:}}' %s // CHECK: ===-------------------------------------------------------------------------=== -// CHECK-NEXT: {{.*}} --- Name --- +// CHECK-NEXT: clang-tidy checks profiling +// CHECK-NEXT: ===-------------------------------------------------------------------------=== +// CHECK-NEXT: Total Execution Time: {{.*}} seconds ({{.*}} wall clock) + +// CHECK: {{.*}} --- Name --- // CHECK-NEXT: {{.*}} readability-function-size // CHECK-NEXT: {{.*}} Total -// CHECK-NEXT: ===-------------------------------------------------------------------------=== // CHECK-NOT: ===-------------------------------------------------------------------------=== +// CHECK-NOT: clang-tidy checks profiling +// CHECK-NOT: ===-------------------------------------------------------------------------=== +// CHECK-NOT: Total Execution Time: {{.*}} seconds ({{.*}} wall clock) + // CHECK-NOT: {{.*}} --- Name --- // CHECK-NOT: {{.*}} readability-function-size // CHECK-NOT: {{.*}} Total -// CHECK-NOT: ===-------------------------------------------------------------------------=== class A { A() {} |