minix/external/bsd/libc++/dist/libcxx/test/containers/sequences/vector/vector.capacity/shrink_to_fit.pass.cpp
Lionel Sambuc 4684ddb6aa LLVM Minix changes
- import libcxx
 - reduce targets to the one when compiled as a tools

Change-Id: Iabb8427f80ff8e89463559a28bcb8b4f2bdbc496
2014-07-28 17:05:59 +02:00

53 lines
1.3 KiB
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.
//
//===----------------------------------------------------------------------===//
// <vector>
// void shrink_to_fit();
#include <vector>
#include <cassert>
#include "../../../stack_allocator.h"
#include "../../../min_allocator.h"
int main()
{
{
std::vector<int> v(100);
v.push_back(1);
v.shrink_to_fit();
assert(v.capacity() == 101);
assert(v.size() == 101);
}
{
std::vector<int, stack_allocator<int, 401> > v(100);
v.push_back(1);
v.shrink_to_fit();
assert(v.capacity() == 101);
assert(v.size() == 101);
}
#ifndef _LIBCPP_NO_EXCEPTIONS
{
std::vector<int, stack_allocator<int, 400> > v(100);
v.push_back(1);
v.shrink_to_fit();
assert(v.capacity() == 200);
assert(v.size() == 101);
}
#endif
#if __cplusplus >= 201103L
{
std::vector<int, min_allocator<int>> v(100);
v.push_back(1);
v.shrink_to_fit();
assert(v.capacity() == 101);
assert(v.size() == 101);
}
#endif
}