[cfe-commits] r151591 - /cfe/trunk/test/Analysis/stats.c

Richard Trieu rtrieu at google.com
Mon Feb 27 15:40:41 PST 2012


Author: rtrieu
Date: Mon Feb 27 17:40:41 2012
New Revision: 151591

URL: http://llvm.org/viewvc/llvm-project?rev=151591&view=rev
Log:
Fix a test case that was added in r151570.  The redirect of output was broken
so no testing was actually done.  Further, the commands produce no output.
The redirection has been fixed and the test has been disabled.


Modified:
    cfe/trunk/test/Analysis/stats.c

Modified: cfe/trunk/test/Analysis/stats.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Analysis/stats.c?rev=151591&r1=151590&r2=151591&view=diff
==============================================================================
--- cfe/trunk/test/Analysis/stats.c (original)
+++ cfe/trunk/test/Analysis/stats.c Mon Feb 27 17:40:41 2012
@@ -1,4 +1,5 @@
-// RUN: %clang_cc1 -analyze -analyzer-stats %s 2> FileCheck
+// RUN: %clang_cc1 -analyze -analyzer-stats %s 2>&1 | FileCheck %s
+// XFAIL: *
 
 void foo() {
   ;





More information about the cfe-commits mailing list