blob: 9963cf85929526ab7f82b6af0b8a2f88871997bf [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <forward_list>
// template <class T, class Allocator>
// void swap(forward_list<T, Allocator>& x, forward_list<T, Allocator>& y);
#include <forward_list>
#include <cassert>
#include "../../../test_allocator.h"
int main()
{
{
typedef int T;
typedef test_allocator<T> A;
typedef std::forward_list<T, A> C;
const T t1[] = {0, 1, 2, 3, 4, 5};
C c1(std::begin(t1), std::end(t1), A(1));
const T t2[] = {10, 11, 12};
C c2(std::begin(t2), std::end(t2), A(2));
swap(c1, c2);
assert(distance(c1.begin(), c1.end()) == 3);
assert(*next(c1.begin(), 0) == 10);
assert(*next(c1.begin(), 1) == 11);
assert(*next(c1.begin(), 2) == 12);
assert(c1.get_allocator() == A(1));
assert(distance(c2.begin(), c2.end()) == 6);
assert(*next(c2.begin(), 0) == 0);
assert(*next(c2.begin(), 1) == 1);
assert(*next(c2.begin(), 2) == 2);
assert(*next(c2.begin(), 3) == 3);
assert(*next(c2.begin(), 4) == 4);
assert(*next(c2.begin(), 5) == 5);
assert(c2.get_allocator() == A(2));
}
{
typedef int T;
typedef test_allocator<T> A;
typedef std::forward_list<T, A> C;
const T t1[] = {0, 1, 2, 3, 4, 5};
C c1(std::begin(t1), std::end(t1), A(1));
C c2(A(2));
swap(c1, c2);
assert(distance(c1.begin(), c1.end()) == 0);
assert(c1.get_allocator() == A(1));
assert(distance(c2.begin(), c2.end()) == 6);
assert(*next(c2.begin(), 0) == 0);
assert(*next(c2.begin(), 1) == 1);
assert(*next(c2.begin(), 2) == 2);
assert(*next(c2.begin(), 3) == 3);
assert(*next(c2.begin(), 4) == 4);
assert(*next(c2.begin(), 5) == 5);
assert(c2.get_allocator() == A(2));
}
{
typedef int T;
typedef test_allocator<T> A;
typedef std::forward_list<T, A> C;
C c1(A(1));
const T t2[] = {10, 11, 12};
C c2(std::begin(t2), std::end(t2), A(2));
swap(c1, c2);
assert(distance(c1.begin(), c1.end()) == 3);
assert(*next(c1.begin(), 0) == 10);
assert(*next(c1.begin(), 1) == 11);
assert(*next(c1.begin(), 2) == 12);
assert(c1.get_allocator() == A(1));
assert(distance(c2.begin(), c2.end()) == 0);
assert(c2.get_allocator() == A(2));
}
{
typedef int T;
typedef test_allocator<T> A;
typedef std::forward_list<T, A> C;
C c1(A(1));
C c2(A(2));
swap(c1, c2);
assert(distance(c1.begin(), c1.end()) == 0);
assert(c1.get_allocator() == A(1));
assert(distance(c2.begin(), c2.end()) == 0);
assert(c2.get_allocator() == A(2));
}
{
typedef int T;
typedef other_allocator<T> A;
typedef std::forward_list<T, A> C;
const T t1[] = {0, 1, 2, 3, 4, 5};
C c1(std::begin(t1), std::end(t1), A(1));
const T t2[] = {10, 11, 12};
C c2(std::begin(t2), std::end(t2), A(2));
swap(c1, c2);
assert(distance(c1.begin(), c1.end()) == 3);
assert(*next(c1.begin(), 0) == 10);
assert(*next(c1.begin(), 1) == 11);
assert(*next(c1.begin(), 2) == 12);
assert(c1.get_allocator() == A(2));
assert(distance(c2.begin(), c2.end()) == 6);
assert(*next(c2.begin(), 0) == 0);
assert(*next(c2.begin(), 1) == 1);
assert(*next(c2.begin(), 2) == 2);
assert(*next(c2.begin(), 3) == 3);
assert(*next(c2.begin(), 4) == 4);
assert(*next(c2.begin(), 5) == 5);
assert(c2.get_allocator() == A(1));
}
{
typedef int T;
typedef other_allocator<T> A;
typedef std::forward_list<T, A> C;
const T t1[] = {0, 1, 2, 3, 4, 5};
C c1(std::begin(t1), std::end(t1), A(1));
C c2(A(2));
swap(c1, c2);
assert(distance(c1.begin(), c1.end()) == 0);
assert(c1.get_allocator() == A(2));
assert(distance(c2.begin(), c2.end()) == 6);
assert(*next(c2.begin(), 0) == 0);
assert(*next(c2.begin(), 1) == 1);
assert(*next(c2.begin(), 2) == 2);
assert(*next(c2.begin(), 3) == 3);
assert(*next(c2.begin(), 4) == 4);
assert(*next(c2.begin(), 5) == 5);
assert(c2.get_allocator() == A(1));
}
{
typedef int T;
typedef other_allocator<T> A;
typedef std::forward_list<T, A> C;
C c1(A(1));
const T t2[] = {10, 11, 12};
C c2(std::begin(t2), std::end(t2), A(2));
swap(c1, c2);
assert(distance(c1.begin(), c1.end()) == 3);
assert(*next(c1.begin(), 0) == 10);
assert(*next(c1.begin(), 1) == 11);
assert(*next(c1.begin(), 2) == 12);
assert(c1.get_allocator() == A(2));
assert(distance(c2.begin(), c2.end()) == 0);
assert(c2.get_allocator() == A(1));
}
{
typedef int T;
typedef other_allocator<T> A;
typedef std::forward_list<T, A> C;
C c1(A(1));
C c2(A(2));
swap(c1, c2);
assert(distance(c1.begin(), c1.end()) == 0);
assert(c1.get_allocator() == A(2));
assert(distance(c2.begin(), c2.end()) == 0);
assert(c2.get_allocator() == A(1));
}
}