]> granicus.if.org Git - clang/commitdiff
FileCheckize.
authorEric Christopher <echristo@apple.com>
Thu, 2 Dec 2010 02:13:27 +0000 (02:13 +0000)
committerEric Christopher <echristo@apple.com>
Thu, 2 Dec 2010 02:13:27 +0000 (02:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120647 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/no-common.c

index 03a5bb064c31d84bea269af0913399ec57493ac4..a8f2b2b277317e52969a7d68a64057edd75f28fe 100644 (file)
@@ -1,6 +1,6 @@
-// RUN: %clang -emit-llvm -S -o %t %s
-// RUN: grep '@x = common global' %t
-// RUN: %clang -fno-common -emit-llvm -S -o %t %s
-// RUN: grep '@x = global' %t
+// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s -check-prefix=CHECK-DEFAULT
+// RUN: %clang_cc1 %s -fno-common -emit-llvm -o - | FileCheck %s -check-prefix=CHECK-NOCOMMON
 
+// CHECK-DEFAULT: @x = common global
+// CHECK-NOCOMMON: @x = global
 int x;