From 14b74ccd4e20049fc86e9a41ed87830e9d87434a Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Fri, 1 May 2009 17:29:33 +0000 Subject: [PATCH] Fix run line in failing test case (it was missing the '%s' for the file name, thus causing the test case to hang). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70558 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Analysis/xfail_rdar_6440393.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Analysis/xfail_rdar_6440393.m b/test/Analysis/xfail_rdar_6440393.m index 9a30c01eee..a3e91428c6 100644 --- a/test/Analysis/xfail_rdar_6440393.m +++ b/test/Analysis/xfail_rdar_6440393.m @@ -1,5 +1,5 @@ -// RUN: clang-cc -analyze -checker-cfref -analyzer-store=basic && -// RUN: clang-cc -analyze -checker-cfref -analyzer-store=region +// RUN: clang-cc -analyze -checker-cfref -analyzer-store=basic %s && +// RUN: clang-cc -analyze -checker-cfref -analyzer-store=region %s // XFAIL // *** These tests will be migrated to other test files once these failures -- 2.50.1