Mercurial > hg > CbC > CbC_llvm
view test/FileCheck/check-prefixes.txt @ 52:c22698ecb2a9
modified CreateIdentifierInfo and create new function which was named 'CreateUniqueIdentifierInfo'.
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 15 Jan 2014 21:01:33 +0900 (2014-01-15) |
parents | 95c75e76d11b |
children |
line wrap: on
line source
// RUN: FileCheck -check-prefix=ANOTHER-PREFIX -input-file %s %s // RUN: not FileCheck -check-prefix=PREFIX -input-file %s %s 2>&1 | FileCheck -check-prefix=CHECK-NONEXISTENT-PREFIX %s foobar ; ANOTHER-PREFIX: foobar ; We use regex to match the colon so that FileCheck won't think it is a check ; prefix. ; CHECK-NONEXISTENT-PREFIX: error: no check strings found with prefix 'PREFIX{{:}}'