Author: ericwf Date: Tue Jun 21 21:07:26 2016 New Revision: 273365 URL: http://llvm.org/viewvc/llvm-project?rev=273365&view=rev Log: Move more _LIBCPP_VERSION tests to test/libcxx.
Added: libcxx/trunk/test/libcxx/atomics/version.pass.cpp libcxx/trunk/test/libcxx/diagnostics/ libcxx/trunk/test/libcxx/diagnostics/assertions/ libcxx/trunk/test/libcxx/diagnostics/assertions/version_cassert.pass.cpp libcxx/trunk/test/libcxx/diagnostics/errno/ libcxx/trunk/test/libcxx/diagnostics/errno/version_cerrno.pass.cpp libcxx/trunk/test/libcxx/diagnostics/std.exceptions/ libcxx/trunk/test/libcxx/diagnostics/std.exceptions/version.pass.cpp libcxx/trunk/test/libcxx/diagnostics/syserr/ libcxx/trunk/test/libcxx/diagnostics/syserr/version.pass.cpp libcxx/trunk/test/libcxx/experimental/optional/ libcxx/trunk/test/libcxx/experimental/optional/version.pass.cpp libcxx/trunk/test/libcxx/experimental/utilities/meta/ libcxx/trunk/test/libcxx/experimental/utilities/meta/version.pass.cpp libcxx/trunk/test/libcxx/experimental/utilities/utility/ libcxx/trunk/test/libcxx/experimental/utilities/utility/version.pass.cpp libcxx/trunk/test/libcxx/strings/c.strings/ libcxx/trunk/test/libcxx/strings/c.strings/version_cctype.pass.cpp libcxx/trunk/test/libcxx/strings/c.strings/version_cstring.pass.cpp libcxx/trunk/test/libcxx/strings/c.strings/version_cuchar.pass.cpp libcxx/trunk/test/libcxx/strings/c.strings/version_cwchar.pass.cpp libcxx/trunk/test/libcxx/strings/c.strings/version_cwctype.pass.cpp libcxx/trunk/test/libcxx/strings/version.pass.cpp libcxx/trunk/test/libcxx/thread/thread.condition/version.pass.cpp libcxx/trunk/test/libcxx/thread/thread.mutex/version.pass.cpp libcxx/trunk/test/libcxx/thread/thread.threads/version.pass.cpp Removed: libcxx/trunk/test/std/atomics/version.pass.cpp libcxx/trunk/test/std/diagnostics/std.exceptions/version.pass.cpp libcxx/trunk/test/std/diagnostics/syserr/version.pass.cpp libcxx/trunk/test/std/experimental/optional/version.pass.cpp libcxx/trunk/test/std/experimental/utilities/meta/version.pass.cpp libcxx/trunk/test/std/experimental/utilities/utility/version.pass.cpp libcxx/trunk/test/std/strings/c.strings/version_cctype.pass.cpp libcxx/trunk/test/std/strings/c.strings/version_cstring.pass.cpp libcxx/trunk/test/std/strings/c.strings/version_cuchar.pass.cpp libcxx/trunk/test/std/strings/c.strings/version_cwchar.pass.cpp libcxx/trunk/test/std/strings/c.strings/version_cwctype.pass.cpp libcxx/trunk/test/std/strings/version.pass.cpp libcxx/trunk/test/std/thread/thread.condition/version.pass.cpp libcxx/trunk/test/std/thread/thread.mutex/version.pass.cpp libcxx/trunk/test/std/thread/thread.threads/version.pass.cpp Modified: libcxx/trunk/test/std/diagnostics/assertions/cassert.pass.cpp libcxx/trunk/test/std/diagnostics/errno/cerrno.pass.cpp Added: libcxx/trunk/test/libcxx/atomics/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/atomics/version.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/atomics/version.pass.cpp (added) +++ libcxx/trunk/test/libcxx/atomics/version.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,22 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// +// +// UNSUPPORTED: libcpp-has-no-threads + +// <atomic> + +#include <atomic> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/diagnostics/assertions/version_cassert.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/diagnostics/assertions/version_cassert.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/diagnostics/assertions/version_cassert.pass.cpp (added) +++ libcxx/trunk/test/libcxx/diagnostics/assertions/version_cassert.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// test <cassert> + +#include <cassert> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/diagnostics/errno/version_cerrno.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/diagnostics/errno/version_cerrno.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/diagnostics/errno/version_cerrno.pass.cpp (added) +++ libcxx/trunk/test/libcxx/diagnostics/errno/version_cerrno.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,19 @@ +// -*- C++ -*- +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// test <cerrno> + +#include <cerrno> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() {} Added: libcxx/trunk/test/libcxx/diagnostics/std.exceptions/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/diagnostics/std.exceptions/version.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/diagnostics/std.exceptions/version.pass.cpp (added) +++ libcxx/trunk/test/libcxx/diagnostics/std.exceptions/version.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <stdexcept> + +#include <stdexcept> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/diagnostics/syserr/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/diagnostics/syserr/version.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/diagnostics/syserr/version.pass.cpp (added) +++ libcxx/trunk/test/libcxx/diagnostics/syserr/version.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <system_error> + +#include <system_error> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/experimental/optional/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/experimental/optional/version.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/experimental/optional/version.pass.cpp (added) +++ libcxx/trunk/test/libcxx/experimental/optional/version.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <optional> + +#include <experimental/optional> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/experimental/utilities/meta/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/experimental/utilities/meta/version.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/experimental/utilities/meta/version.pass.cpp (added) +++ libcxx/trunk/test/libcxx/experimental/utilities/meta/version.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <experimental/type_traits> + +#include <experimental/type_traits> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/experimental/utilities/utility/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/experimental/utilities/utility/version.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/experimental/utilities/utility/version.pass.cpp (added) +++ libcxx/trunk/test/libcxx/experimental/utilities/utility/version.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <experimental/utility> + +#include <experimental/utility> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/strings/c.strings/version_cctype.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/strings/c.strings/version_cctype.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/strings/c.strings/version_cctype.pass.cpp (added) +++ libcxx/trunk/test/libcxx/strings/c.strings/version_cctype.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <cctype> + +#include <cctype> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/strings/c.strings/version_cstring.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/strings/c.strings/version_cstring.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/strings/c.strings/version_cstring.pass.cpp (added) +++ libcxx/trunk/test/libcxx/strings/c.strings/version_cstring.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <cstring> + +#include <cstring> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/strings/c.strings/version_cuchar.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/strings/c.strings/version_cuchar.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/strings/c.strings/version_cuchar.pass.cpp (added) +++ libcxx/trunk/test/libcxx/strings/c.strings/version_cuchar.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,22 @@ +//===----------------------------------------------------------------------===// +// +// 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: * + +// <cuchar> + +#include <cuchar> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/strings/c.strings/version_cwchar.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/strings/c.strings/version_cwchar.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/strings/c.strings/version_cwchar.pass.cpp (added) +++ libcxx/trunk/test/libcxx/strings/c.strings/version_cwchar.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <cwchar> + +#include <cwchar> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/strings/c.strings/version_cwctype.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/strings/c.strings/version_cwctype.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/strings/c.strings/version_cwctype.pass.cpp (added) +++ libcxx/trunk/test/libcxx/strings/c.strings/version_cwctype.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <cwctype> + +#include <cwctype> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/strings/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/strings/version.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/strings/version.pass.cpp (added) +++ libcxx/trunk/test/libcxx/strings/version.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <string> + +#include <string> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/thread/thread.condition/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/thread/thread.condition/version.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/thread/thread.condition/version.pass.cpp (added) +++ libcxx/trunk/test/libcxx/thread/thread.condition/version.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,22 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// +// +// UNSUPPORTED: libcpp-has-no-threads + +// <condition_variable> + +#include <condition_variable> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/thread/thread.mutex/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/thread/thread.mutex/version.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/thread/thread.mutex/version.pass.cpp (added) +++ libcxx/trunk/test/libcxx/thread/thread.mutex/version.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <mutex> + +#include <mutex> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Added: libcxx/trunk/test/libcxx/thread/thread.threads/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/thread/thread.threads/version.pass.cpp?rev=273365&view=auto ============================================================================== --- libcxx/trunk/test/libcxx/thread/thread.threads/version.pass.cpp (added) +++ libcxx/trunk/test/libcxx/thread/thread.threads/version.pass.cpp Tue Jun 21 21:07:26 2016 @@ -0,0 +1,22 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// +// +// UNSUPPORTED: libcpp-has-no-threads + +// <thread> + +#include <thread> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} Removed: libcxx/trunk/test/std/atomics/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/atomics/version.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/atomics/version.pass.cpp (original) +++ libcxx/trunk/test/std/atomics/version.pass.cpp (removed) @@ -1,22 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// -// -// UNSUPPORTED: libcpp-has-no-threads - -// <atomic> - -#include <atomic> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Modified: libcxx/trunk/test/std/diagnostics/assertions/cassert.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/diagnostics/assertions/cassert.pass.cpp?rev=273365&r1=273364&r2=273365&view=diff ============================================================================== --- libcxx/trunk/test/std/diagnostics/assertions/cassert.pass.cpp (original) +++ libcxx/trunk/test/std/diagnostics/assertions/cassert.pass.cpp Tue Jun 21 21:07:26 2016 @@ -15,10 +15,6 @@ #error assert not defined #endif -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - int main() { } Modified: libcxx/trunk/test/std/diagnostics/errno/cerrno.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/diagnostics/errno/cerrno.pass.cpp?rev=273365&r1=273364&r2=273365&view=diff ============================================================================== --- libcxx/trunk/test/std/diagnostics/errno/cerrno.pass.cpp (original) +++ libcxx/trunk/test/std/diagnostics/errno/cerrno.pass.cpp Tue Jun 21 21:07:26 2016 @@ -12,10 +12,6 @@ #include <cerrno> -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - #ifndef E2BIG #error E2BIG not defined #endif Removed: libcxx/trunk/test/std/diagnostics/std.exceptions/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/diagnostics/std.exceptions/version.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/diagnostics/std.exceptions/version.pass.cpp (original) +++ libcxx/trunk/test/std/diagnostics/std.exceptions/version.pass.cpp (removed) @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// <stdexcept> - -#include <stdexcept> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/diagnostics/syserr/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/diagnostics/syserr/version.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/diagnostics/syserr/version.pass.cpp (original) +++ libcxx/trunk/test/std/diagnostics/syserr/version.pass.cpp (removed) @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// <system_error> - -#include <system_error> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/experimental/optional/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/experimental/optional/version.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/experimental/optional/version.pass.cpp (original) +++ libcxx/trunk/test/std/experimental/optional/version.pass.cpp (removed) @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// <optional> - -#include <experimental/optional> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/experimental/utilities/meta/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/experimental/utilities/meta/version.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/experimental/utilities/meta/version.pass.cpp (original) +++ libcxx/trunk/test/std/experimental/utilities/meta/version.pass.cpp (removed) @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// <experimental/type_traits> - -#include <experimental/type_traits> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/experimental/utilities/utility/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/experimental/utilities/utility/version.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/experimental/utilities/utility/version.pass.cpp (original) +++ libcxx/trunk/test/std/experimental/utilities/utility/version.pass.cpp (removed) @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// <experimental/utility> - -#include <experimental/utility> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/strings/c.strings/version_cctype.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/strings/c.strings/version_cctype.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/strings/c.strings/version_cctype.pass.cpp (original) +++ libcxx/trunk/test/std/strings/c.strings/version_cctype.pass.cpp (removed) @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// <cctype> - -#include <cctype> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/strings/c.strings/version_cstring.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/strings/c.strings/version_cstring.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/strings/c.strings/version_cstring.pass.cpp (original) +++ libcxx/trunk/test/std/strings/c.strings/version_cstring.pass.cpp (removed) @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// <cstring> - -#include <cstring> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/strings/c.strings/version_cuchar.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/strings/c.strings/version_cuchar.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/strings/c.strings/version_cuchar.pass.cpp (original) +++ libcxx/trunk/test/std/strings/c.strings/version_cuchar.pass.cpp (removed) @@ -1,22 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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: * - -// <cuchar> - -#include <cuchar> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/strings/c.strings/version_cwchar.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/strings/c.strings/version_cwchar.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/strings/c.strings/version_cwchar.pass.cpp (original) +++ libcxx/trunk/test/std/strings/c.strings/version_cwchar.pass.cpp (removed) @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// <cwchar> - -#include <cwchar> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/strings/c.strings/version_cwctype.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/strings/c.strings/version_cwctype.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/strings/c.strings/version_cwctype.pass.cpp (original) +++ libcxx/trunk/test/std/strings/c.strings/version_cwctype.pass.cpp (removed) @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// <cwctype> - -#include <cwctype> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/strings/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/strings/version.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/strings/version.pass.cpp (original) +++ libcxx/trunk/test/std/strings/version.pass.cpp (removed) @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// <string> - -#include <string> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/thread/thread.condition/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/thread/thread.condition/version.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/thread/thread.condition/version.pass.cpp (original) +++ libcxx/trunk/test/std/thread/thread.condition/version.pass.cpp (removed) @@ -1,22 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// -// -// UNSUPPORTED: libcpp-has-no-threads - -// <condition_variable> - -#include <condition_variable> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/thread/thread.mutex/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/thread/thread.mutex/version.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/thread/thread.mutex/version.pass.cpp (original) +++ libcxx/trunk/test/std/thread/thread.mutex/version.pass.cpp (removed) @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// <mutex> - -#include <mutex> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} Removed: libcxx/trunk/test/std/thread/thread.threads/version.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/thread/thread.threads/version.pass.cpp?rev=273364&view=auto ============================================================================== --- libcxx/trunk/test/std/thread/thread.threads/version.pass.cpp (original) +++ libcxx/trunk/test/std/thread/thread.threads/version.pass.cpp (removed) @@ -1,22 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// -// -// UNSUPPORTED: libcpp-has-no-threads - -// <thread> - -#include <thread> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits