[libcxx] r273364 - Move all tests for _LIBCPP_VERSION in language.support to test/libcxx/language.support.

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Tue Jun 21 18:56:00 PDT 2016


Author: ericwf
Date: Tue Jun 21 20:55:59 2016
New Revision: 273364

URL: http://llvm.org/viewvc/llvm-project?rev=273364&view=rev
Log:
Move all tests for _LIBCPP_VERSION in language.support to test/libcxx/language.support.

Added:
    libcxx/trunk/test/libcxx/language.support/cstdint/
    libcxx/trunk/test/libcxx/language.support/cstdint/version.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.dynamic/version.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.exception/
    libcxx/trunk/test/libcxx/language.support/support.exception/version.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.initlist/
    libcxx/trunk/test/libcxx/language.support/support.initlist/version.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.limits/
    libcxx/trunk/test/libcxx/language.support/support.limits/c.limits/
    libcxx/trunk/test/libcxx/language.support/support.limits/c.limits/version_cfloat.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.limits/c.limits/version_climits.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.limits/limits/
    libcxx/trunk/test/libcxx/language.support/support.limits/limits/version.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.rtti/
    libcxx/trunk/test/libcxx/language.support/support.rtti/version.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.runtime/
    libcxx/trunk/test/libcxx/language.support/support.runtime/version_csetjmp.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.runtime/version_csignal.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdarg.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdbool.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdlib.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.runtime/version_ctime.pass.cpp
    libcxx/trunk/test/libcxx/language.support/support.types/
    libcxx/trunk/test/libcxx/language.support/support.types/version.pass.cpp
Removed:
    libcxx/trunk/test/std/language.support/cstdint/version.pass.cpp
    libcxx/trunk/test/std/language.support/support.dynamic/version.pass.cpp
    libcxx/trunk/test/std/language.support/support.exception/version.pass.cpp
    libcxx/trunk/test/std/language.support/support.initlist/version.pass.cpp
    libcxx/trunk/test/std/language.support/support.limits/c.limits/version_cfloat.pass.cpp
    libcxx/trunk/test/std/language.support/support.limits/c.limits/version_climits.pass.cpp
    libcxx/trunk/test/std/language.support/support.limits/limits/version.pass.cpp
    libcxx/trunk/test/std/language.support/support.rtti/version.pass.cpp
    libcxx/trunk/test/std/language.support/support.runtime/version_csetjmp.pass.cpp
    libcxx/trunk/test/std/language.support/support.runtime/version_csignal.pass.cpp
    libcxx/trunk/test/std/language.support/support.runtime/version_cstdarg.pass.cpp
    libcxx/trunk/test/std/language.support/support.runtime/version_cstdbool.pass.cpp
    libcxx/trunk/test/std/language.support/support.runtime/version_cstdlib.pass.cpp
    libcxx/trunk/test/std/language.support/support.runtime/version_ctime.pass.cpp
    libcxx/trunk/test/std/language.support/support.types/version.pass.cpp

Added: libcxx/trunk/test/libcxx/language.support/cstdint/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/cstdint/version.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/cstdint/version.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/cstdint/version.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <cstdint>
+
+#include <cstdint>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.dynamic/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.dynamic/version.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.dynamic/version.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.dynamic/version.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <new>
+
+#include <new>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.exception/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.exception/version.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.exception/version.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.exception/version.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <exception>
+
+#include <exception>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.initlist/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.initlist/version.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.initlist/version.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.initlist/version.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <initializer_list>
+
+#include <initializer_list>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.limits/c.limits/version_cfloat.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.limits/c.limits/version_cfloat.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.limits/c.limits/version_cfloat.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.limits/c.limits/version_cfloat.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <cfloat>
+
+#include <cfloat>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.limits/c.limits/version_climits.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.limits/c.limits/version_climits.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.limits/c.limits/version_climits.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.limits/c.limits/version_climits.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <climits>
+
+#include <climits>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.limits/limits/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.limits/limits/version.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.limits/limits/version.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.limits/limits/version.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <limits>
+
+#include <limits>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.rtti/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.rtti/version.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.rtti/version.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.rtti/version.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <typeinfo>
+
+#include <typeinfo>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.runtime/version_csetjmp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.runtime/version_csetjmp.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.runtime/version_csetjmp.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.runtime/version_csetjmp.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <csetjmp>
+
+#include <csetjmp>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.runtime/version_csignal.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.runtime/version_csignal.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.runtime/version_csignal.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.runtime/version_csignal.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <csignal>
+
+#include <csignal>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdarg.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdarg.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdarg.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdarg.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <cstdarg>
+
+#include <cstdarg>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdbool.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdbool.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdbool.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdbool.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <cstdbool>
+
+#include <cstdbool>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdlib.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdlib.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdlib.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.runtime/version_cstdlib.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <cstdlib>
+
+#include <cstdlib>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.runtime/version_ctime.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.runtime/version_ctime.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.runtime/version_ctime.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.runtime/version_ctime.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <ctime>
+
+#include <ctime>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Added: libcxx/trunk/test/libcxx/language.support/support.types/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/language.support/support.types/version.pass.cpp?rev=273364&view=auto
==============================================================================
--- libcxx/trunk/test/libcxx/language.support/support.types/version.pass.cpp (added)
+++ libcxx/trunk/test/libcxx/language.support/support.types/version.pass.cpp Tue Jun 21 20:55:59 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <cstddef>
+
+#include <cstddef>
+
+#ifndef _LIBCPP_VERSION
+#error _LIBCPP_VERSION not defined
+#endif
+
+int main()
+{
+}

Removed: libcxx/trunk/test/std/language.support/cstdint/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/cstdint/version.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/cstdint/version.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/cstdint/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.
-//
-//===----------------------------------------------------------------------===//
-
-// <cstdint>
-
-#include <cstdint>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.dynamic/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.dynamic/version.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.dynamic/version.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.dynamic/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.
-//
-//===----------------------------------------------------------------------===//
-
-// <new>
-
-#include <new>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.exception/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.exception/version.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.exception/version.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.exception/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.
-//
-//===----------------------------------------------------------------------===//
-
-// <exception>
-
-#include <exception>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.initlist/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.initlist/version.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.initlist/version.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.initlist/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.
-//
-//===----------------------------------------------------------------------===//
-
-// <initializer_list>
-
-#include <initializer_list>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.limits/c.limits/version_cfloat.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.limits/c.limits/version_cfloat.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.limits/c.limits/version_cfloat.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.limits/c.limits/version_cfloat.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.
-//
-//===----------------------------------------------------------------------===//
-
-// <cfloat>
-
-#include <cfloat>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.limits/c.limits/version_climits.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.limits/c.limits/version_climits.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.limits/c.limits/version_climits.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.limits/c.limits/version_climits.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.
-//
-//===----------------------------------------------------------------------===//
-
-// <climits>
-
-#include <climits>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.limits/limits/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.limits/limits/version.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.limits/limits/version.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.limits/limits/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.
-//
-//===----------------------------------------------------------------------===//
-
-// <limits>
-
-#include <limits>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.rtti/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.rtti/version.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.rtti/version.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.rtti/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.
-//
-//===----------------------------------------------------------------------===//
-
-// <typeinfo>
-
-#include <typeinfo>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.runtime/version_csetjmp.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.runtime/version_csetjmp.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.runtime/version_csetjmp.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.runtime/version_csetjmp.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.
-//
-//===----------------------------------------------------------------------===//
-
-// <csetjmp>
-
-#include <csetjmp>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.runtime/version_csignal.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.runtime/version_csignal.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.runtime/version_csignal.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.runtime/version_csignal.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.
-//
-//===----------------------------------------------------------------------===//
-
-// <csignal>
-
-#include <csignal>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.runtime/version_cstdarg.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.runtime/version_cstdarg.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.runtime/version_cstdarg.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.runtime/version_cstdarg.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.
-//
-//===----------------------------------------------------------------------===//
-
-// <cstdarg>
-
-#include <cstdarg>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.runtime/version_cstdbool.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.runtime/version_cstdbool.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.runtime/version_cstdbool.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.runtime/version_cstdbool.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.
-//
-//===----------------------------------------------------------------------===//
-
-// <cstdbool>
-
-#include <cstdbool>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.runtime/version_cstdlib.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.runtime/version_cstdlib.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.runtime/version_cstdlib.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.runtime/version_cstdlib.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.
-//
-//===----------------------------------------------------------------------===//
-
-// <cstdlib>
-
-#include <cstdlib>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.runtime/version_ctime.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.runtime/version_ctime.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.runtime/version_ctime.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.runtime/version_ctime.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.
-//
-//===----------------------------------------------------------------------===//
-
-// <ctime>
-
-#include <ctime>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}

Removed: libcxx/trunk/test/std/language.support/support.types/version.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.types/version.pass.cpp?rev=273363&view=auto
==============================================================================
--- libcxx/trunk/test/std/language.support/support.types/version.pass.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.types/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.
-//
-//===----------------------------------------------------------------------===//
-
-// <cstddef>
-
-#include <cstddef>
-
-#ifndef _LIBCPP_VERSION
-#error _LIBCPP_VERSION not defined
-#endif
-
-int main()
-{
-}




More information about the cfe-commits mailing list