From: Alp Toker Date: Thu, 16 Jan 2014 02:36:24 +0000 (+0000) Subject: Disable and XFAIL a test that never worked X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a9a8a2aac3e81c803747c00117b8db1e765204d9;p=clang Disable and XFAIL a test that never worked -verify was simply ignored by the driver. This commit fixes the RUN line and XFAILs the test, unblocking changes to ban use of the driver in Sema tests and avoid problems like this. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@199347 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Sema/warn-thread-safety-analysis.c b/test/Sema/warn-thread-safety-analysis.c index 1918aceee6..f5b2709f7f 100644 --- a/test/Sema/warn-thread-safety-analysis.c +++ b/test/Sema/warn-thread-safety-analysis.c @@ -1,4 +1,6 @@ -// RUN: %clang -fsyntax-only -verify -Wthread-safety -Wthread-safety-beta -fcxx-exceptions %s +// RUN: %clang_cc1 -fsyntax-only -verify -Wthread-safety -Wthread-safety-beta -fcxx-exceptions %s +// FIXME: This test never worked due to a broken RUN line. +// XFAIL: * #define LOCKABLE __attribute__ ((lockable)) #define SCOPED_LOCKABLE __attribute__ ((scoped_lockable))