annotate clang/test/Misc/find-diagnostic-id.c @ 206:f17a3b42b08b
Added tag before-12 for changeset b7591485f4cd
author |
Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
date |
Mon, 07 Jun 2021 21:25:57 +0900 |
parents |
1d019706d866 |
children |
|
rev |
line source |
150
|
1 // RUN: diagtool find-diagnostic-id warn_unused_variable > %t; FileCheck %s < %t
|
|
2 // RUN: cat %t | xargs diagtool find-diagnostic-id | FileCheck %s --check-prefix=INVERSE
|
|
3 // RUN: not diagtool find-diagnostic-id warn_unused_vars 2>&1 | FileCheck --check-prefix=ERROR %s
|
|
4
|
|
5 // CHECK: {{^[0-9]+$}}
|
|
6 // INVERSE: warn_unused_variable
|
|
7 // ERROR: error: invalid diagnostic 'warn_unused_vars'
|