From ce690f4b2415d50da1a5019d0dde2ecf375e7d3e Mon Sep 17 00:00:00 2001 From: Anna Zaks Date: Sat, 17 Mar 2012 01:53:32 +0000 Subject: [PATCH] [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.) llvm-svn: 152969 --- clang/test/Analysis/malloc-plist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/Analysis/malloc-plist.c b/clang/test/Analysis/malloc-plist.c index 326161b06ab2..d347e5f9fcfc 100644 --- a/clang/test/Analysis/malloc-plist.c +++ b/clang/test/Analysis/malloc-plist.c @@ -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;