forked from OSchip/llvm-project
Test that the single-threaded lit feature is available iff the corresponding guard is #defined
http://reviews.llvm.org/D6006 llvm-svn: 220729
This commit is contained in:
parent
7c801dc90b
commit
33c2c02e25
|
@ -0,0 +1,18 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
// XFAIL: libcpp-has-no-threads
|
||||
|
||||
#ifdef _LIBCPP_HAS_NO_THREADS
|
||||
#error This should be XFAIL'd for the purpose of detecting that the LIT feature\
|
||||
'libcpp-has-no-threads' is available iff _LIBCPP_HAS_NO_THREADS is defined
|
||||
#endif
|
||||
|
||||
int main()
|
||||
{
|
||||
}
|
Loading…
Reference in New Issue