mirror of https://github.com/microsoft/clang.git
testing: make test use FileCheck
The "grep internal | count" was fragile when your source or remote paths could contain the word "internal". git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@222685 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a7cdf1da5b
commit
23c0fcee35
|
@ -1,4 +1,4 @@
|
||||||
// RUN: %clang_cc1 < %s -emit-llvm | grep internal | count 1
|
// RUN: %clang_cc1 < %s -emit-llvm | FileCheck %s
|
||||||
|
|
||||||
// The two decls for 'a' should merge into one llvm GlobalVariable.
|
// The two decls for 'a' should merge into one llvm GlobalVariable.
|
||||||
|
|
||||||
|
@ -11,3 +11,6 @@ static struct s a = {
|
||||||
10
|
10
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// CHECK-NOT: internal global
|
||||||
|
// CHECK: @a = internal global %struct.s { i32 10 }
|
||||||
|
// CHECK-NOT: internal-global
|
||||||
|
|
Loading…
Reference in New Issue