From 5a83710e371fe68a06e6e3876c6a2c8b820a8976 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Sat, 20 Dec 2014 01:40:03 +0000 Subject: Move test into test/std subdirectory. llvm-svn: 224658 --- .../test/containers/associative/set/empty.pass.cpp | 43 ---------------------- 1 file changed, 43 deletions(-) delete mode 100644 libcxx/test/containers/associative/set/empty.pass.cpp (limited to 'libcxx/test/containers/associative/set/empty.pass.cpp') diff --git a/libcxx/test/containers/associative/set/empty.pass.cpp b/libcxx/test/containers/associative/set/empty.pass.cpp deleted file mode 100644 index eb1080263f4..00000000000 --- a/libcxx/test/containers/associative/set/empty.pass.cpp +++ /dev/null @@ -1,43 +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. -// -//===----------------------------------------------------------------------===// - -// - -// class set - -// bool empty() const; - -#include -#include - -#include "min_allocator.h" - -int main() -{ - { - typedef std::set M; - M m; - assert(m.empty()); - m.insert(M::value_type(1)); - assert(!m.empty()); - m.clear(); - assert(m.empty()); - } -#if __cplusplus >= 201103L - { - typedef std::set, min_allocator> M; - M m; - assert(m.empty()); - m.insert(M::value_type(1)); - assert(!m.empty()); - m.clear(); - assert(m.empty()); - } -#endif -} -- cgit v1.2.3