From: Eric Christopher Date: Thu, 2 Dec 2010 02:13:27 +0000 (+0000) Subject: FileCheckize. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c92342a319c5eb02b8a9cfcc9a4e73392a8b5ae;p=clang FileCheckize. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120647 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/no-common.c b/test/CodeGen/no-common.c index 03a5bb064c..a8f2b2b277 100644 --- a/test/CodeGen/no-common.c +++ b/test/CodeGen/no-common.c @@ -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;