[cfe-commits] r152969 - /cfe/trunk/test/Analysis/malloc-plist.c

Anna Zaks ganna at apple.com
Fri Mar 16 18:53:33 PDT 2012


Author: zaks
Date: Fri Mar 16 20:53:32 2012
New Revision: 152969

URL: http://llvm.org/viewvc/llvm-project?rev=152969&view=rev
Log:
[analyzer] This test is breaking windows bots, make it darwin-specific.

(The plist output does not match the one we expect, specifically we do
not detect that the interesting symbol is returned by a call.)

Modified:
    cfe/trunk/test/Analysis/malloc-plist.c

Modified: cfe/trunk/test/Analysis/malloc-plist.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Analysis/malloc-plist.c?rev=152969&r1=152968&r2=152969&view=diff
==============================================================================
--- cfe/trunk/test/Analysis/malloc-plist.c (original)
+++ cfe/trunk/test/Analysis/malloc-plist.c Fri Mar 16 20:53:32 2012
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -analyze -analyzer-checker=unix.Malloc -analyzer-output=plist -o %t %s
+// RUN: %clang_cc1 -triple x86_64-apple-darwin -analyze -analyzer-checker=unix.Malloc -analyzer-output=plist -o %t %s
 // RUN: FileCheck --input-file %t %s
 
 typedef __typeof(sizeof(int)) size_t;





More information about the cfe-commits mailing list