[cfe-commits] r160720 - /cfe/trunk/test/PCH/objc_stmts.m
NAKAMURA Takumi
geek4civic at gmail.com
Wed Jul 25 04:14:11 PDT 2012
Author: chapuni
Date: Wed Jul 25 06:14:11 2012
New Revision: 160720
URL: http://llvm.org/viewvc/llvm-project?rev=160720&view=rev
Log:
test/PCH/objc_stmts.m: Suppress stderr to be fed to FileCheck.
Modified:
cfe/trunk/test/PCH/objc_stmts.m
Modified: cfe/trunk/test/PCH/objc_stmts.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/PCH/objc_stmts.m?rev=160720&r1=160719&r2=160720&view=diff
==============================================================================
--- cfe/trunk/test/PCH/objc_stmts.m (original)
+++ cfe/trunk/test/PCH/objc_stmts.m Wed Jul 25 06:14:11 2012
@@ -1,11 +1,11 @@
// Test this without pch.
// RUN: %clang_cc1 -include %S/objc_stmts.h -emit-llvm -fobjc-exceptions -o - %s
-// RUN: %clang_cc1 -include %S/objc_stmts.h -ast-dump -fobjc-exceptions -o - %s 2>&1 | FileCheck %s
+// RUN: %clang_cc1 -include %S/objc_stmts.h -ast-dump -fobjc-exceptions -o - %s | FileCheck %s
// Test with pch.
// RUN: %clang_cc1 -x objective-c -emit-pch -fobjc-exceptions -o %t %S/objc_stmts.h
// RUN: %clang_cc1 -include-pch %t -emit-llvm -fobjc-exceptions -o - %s
-// RUN: %clang_cc1 -include-pch %t -ast-dump -fobjc-exceptions -o - %s 2>&1 | FileCheck %s
+// RUN: %clang_cc1 -include-pch %t -ast-dump -fobjc-exceptions -o - %s | FileCheck %s
// CHECK: catch parm = "A *a"
// CHECK: catch parm = "B *b"
More information about the cfe-commits
mailing list