diff options
author | Paul Robinson <paul_robinson@playstation.sony.com> | 2016-02-26 23:34:02 +0000 |
---|---|---|
committer | Paul Robinson <paul_robinson@playstation.sony.com> | 2016-02-26 23:34:02 +0000 |
commit | ede28b79ea82ff9b220451c0d3409cdb9b28fa1d (patch) | |
tree | c23e02170668a7b6b5dfa74636842f168b6c0143 /test/FileCheck | |
parent | e2e3f26532da5f8af456a8587b7e627e00166eed (diff) | |
download | llvm-ede28b79ea82ff9b220451c0d3409cdb9b28fa1d.tar.gz |
[FileCheck] Abort if -NOT is combined with another suffix.
Combinations of suffixes that look useful actually are ignored;
complaining about them will avoid mistakes.
Differential Revision: http://reviews.llvm.org/D17587
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@262092 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FileCheck')
-rw-r--r-- | test/FileCheck/no-multi-suffixes.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/FileCheck/no-multi-suffixes.txt b/test/FileCheck/no-multi-suffixes.txt new file mode 100644 index 000000000000..812a2956cd25 --- /dev/null +++ b/test/FileCheck/no-multi-suffixes.txt @@ -0,0 +1,28 @@ +; RUN: not FileCheck -check-prefix=DAGNOT -input-file %s %s 2>&1 | FileCheck -check-prefix=ERROR -check-prefix=DAGNOT-ERROR %s +; RUN: not FileCheck -check-prefix=NOTDAG -input-file %s %s 2>&1 | FileCheck -check-prefix=ERROR -check-prefix=NOTDAG-ERROR %s +; RUN: not FileCheck -check-prefix=NEXTNOT -input-file %s %s 2>&1 | FileCheck -check-prefix=ERROR -check-prefix=NEXTNOT-ERROR %s +; RUN: not FileCheck -check-prefix=NOTNEXT -input-file %s %s 2>&1 | FileCheck -check-prefix=ERROR -check-prefix=NOTNEXT-ERROR %s +; RUN: not FileCheck -check-prefix=SAMENOT -input-file %s %s 2>&1 | FileCheck -check-prefix=ERROR -check-prefix=SAMENOT-ERROR %s +; RUN: not FileCheck -check-prefix=NOTSAME -input-file %s %s 2>&1 | FileCheck -check-prefix=ERROR -check-prefix=NOTSAME-ERROR %s + +foo +; DAGNOT: foo +; DAGNOT-DAG-NOT: bar +; NOTDAG: foo +; NOTDAG-NOT-DAG: bar +; NEXTNOT: foo +; NEXTNOT-NEXT-NOT: bar +; NOTNEXT: foo +; NOTNEXT-NOT-NEXT: bar +; SAMENOT: foo +; SAMENOT-SAME-NOT: bar +; NOTSAME: foo +; NOTSAME-NOT-SAME: bar + +; ERROR: error: unsupported -NOT combo on prefix +; DAGNOT-ERROR-SAME: 'DAGNOT' +; NOTDAG-ERROR-SAME: 'NOTDAG' +; NEXTNOT-ERROR-SAME: 'NEXTNOT' +; NOTNEXT-ERROR-SAME: 'NOTNEXT' +; SAMENOT-ERROR-SAME: 'SAMENOT' +; NOTSAME-ERROR-SAME: 'NOTSAME' |