From 821d60d05d1d211244a08f30d8cdae72268b9b92 Mon Sep 17 00:00:00 2001 From: Alp Toker Date: Tue, 5 Nov 2013 12:45:46 +0000 Subject: [PATCH] Fix a test that was never being run, mark it XFAIL Turns out this has always been crashing since the test landed in r186647: Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl"), function CheckAccessDeclContext, file clang/lib/AST/DeclBase.cpp, line 690. Needs attention. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@194072 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/OpenMP/threadprivate_ast_print.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/OpenMP/threadprivate_ast_print.cpp b/test/OpenMP/threadprivate_ast_print.cpp index 823a4d6d8d..d2b541bbc0 100644 --- a/test/OpenMP/threadprivate_ast_print.cpp +++ b/test/OpenMP/threadprivate_ast_print.cpp @@ -1,7 +1,9 @@ // RUN: %clang_cc1 -verify -fopenmp -ast-print %s | FileCheck %s -// RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t +// RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -emit-pch -o %t %s // RUN: %clang_cc1 -fopenmp -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print // expected-no-diagnostics +// FIXME: This test has been crashing since r186647. +// XFAIL: * #ifndef HEADER #define HEADER -- 2.50.0