diff options
author | Alp Toker <alp@nuanti.com> | 2013-11-05 12:45:46 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2013-11-05 12:45:46 +0000 |
commit | 6731f38acaed37ab64bcd8404c2ed3a461250e07 (patch) | |
tree | dca904a652b859f8485d17700fc3c223b597b935 /clang/test/OpenMP/threadprivate_ast_print.cpp | |
parent | f80de76ca9af2af24cea44c0a6ad36caaa8370c6 (diff) | |
download | bcm5719-llvm-6731f38acaed37ab64bcd8404c2ed3a461250e07.tar.gz bcm5719-llvm-6731f38acaed37ab64bcd8404c2ed3a461250e07.zip |
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.
llvm-svn: 194072
Diffstat (limited to 'clang/test/OpenMP/threadprivate_ast_print.cpp')
-rw-r--r-- | clang/test/OpenMP/threadprivate_ast_print.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/test/OpenMP/threadprivate_ast_print.cpp b/clang/test/OpenMP/threadprivate_ast_print.cpp index 823a4d6d8dd..d2b541bbc0b 100644 --- a/clang/test/OpenMP/threadprivate_ast_print.cpp +++ b/clang/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 |