diff options
| author | Howard Hinnant <hhinnant@apple.com> | 2013-03-25 20:31:25 +0000 |
|---|---|---|
| committer | Howard Hinnant <hhinnant@apple.com> | 2013-03-25 20:31:25 +0000 |
| commit | 2d752fc2f9ee6a932bc052fa4ce12452221eaa1f (patch) | |
| tree | 7ef7f0163ed932503508d27686cca2875314cf0a /libcxx/test | |
| parent | b00805b722817fec8659594c034c06af90e2d978 (diff) | |
| download | bcm5719-llvm-2d752fc2f9ee6a932bc052fa4ce12452221eaa1f.tar.gz bcm5719-llvm-2d752fc2f9ee6a932bc052fa4ce12452221eaa1f.zip | |
Debug mode tests for vector::front and back.
llvm-svn: 177904
Diffstat (limited to 'libcxx/test')
4 files changed, 192 insertions, 0 deletions
diff --git a/libcxx/test/containers/sequences/vector/db_back.pass.cpp b/libcxx/test/containers/sequences/vector/db_back.pass.cpp new file mode 100644 index 00000000000..40b2b5623fe --- /dev/null +++ b/libcxx/test/containers/sequences/vector/db_back.pass.cpp @@ -0,0 +1,49 @@ +//===----------------------------------------------------------------------===// +// +// 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> + +// Call back() on empty container. + +#if _LIBCPP_DEBUG2 >= 1 + +struct X {}; + +#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::terminate()) + +#include <vector> +#include <cassert> +#include <iterator> +#include <exception> +#include <cstdlib> + +void f1() +{ + std::exit(0); +} + +int main() +{ + std::set_terminate(f1); + typedef int T; + typedef std::vector<T> C; + C c(1); + assert(c.back() == 0); + c.clear(); + assert(c.back() == 0); + assert(false); +} + +#else + +int main() +{ +} + +#endif diff --git a/libcxx/test/containers/sequences/vector/db_cback.pass.cpp b/libcxx/test/containers/sequences/vector/db_cback.pass.cpp new file mode 100644 index 00000000000..709535cf053 --- /dev/null +++ b/libcxx/test/containers/sequences/vector/db_cback.pass.cpp @@ -0,0 +1,47 @@ +//===----------------------------------------------------------------------===// +// +// 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> + +// Call back() on empty const container. + +#if _LIBCPP_DEBUG2 >= 1 + +struct X {}; + +#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::terminate()) + +#include <vector> +#include <cassert> +#include <iterator> +#include <exception> +#include <cstdlib> + +void f1() +{ + std::exit(0); +} + +int main() +{ + std::set_terminate(f1); + typedef int T; + typedef std::vector<T> C; + const C c; + assert(c.back() == 0); + assert(false); +} + +#else + +int main() +{ +} + +#endif diff --git a/libcxx/test/containers/sequences/vector/db_cfront.pass.cpp b/libcxx/test/containers/sequences/vector/db_cfront.pass.cpp new file mode 100644 index 00000000000..b924010e456 --- /dev/null +++ b/libcxx/test/containers/sequences/vector/db_cfront.pass.cpp @@ -0,0 +1,47 @@ +//===----------------------------------------------------------------------===// +// +// 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> + +// Call front() on empty const container. + +#if _LIBCPP_DEBUG2 >= 1 + +struct X {}; + +#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::terminate()) + +#include <vector> +#include <cassert> +#include <iterator> +#include <exception> +#include <cstdlib> + +void f1() +{ + std::exit(0); +} + +int main() +{ + std::set_terminate(f1); + typedef int T; + typedef std::vector<T> C; + const C c; + assert(c.front() == 0); + assert(false); +} + +#else + +int main() +{ +} + +#endif diff --git a/libcxx/test/containers/sequences/vector/db_front.pass.cpp b/libcxx/test/containers/sequences/vector/db_front.pass.cpp new file mode 100644 index 00000000000..320c9de1ecb --- /dev/null +++ b/libcxx/test/containers/sequences/vector/db_front.pass.cpp @@ -0,0 +1,49 @@ +//===----------------------------------------------------------------------===// +// +// 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> + +// Call front() on empty container. + +#if _LIBCPP_DEBUG2 >= 1 + +struct X {}; + +#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::terminate()) + +#include <vector> +#include <cassert> +#include <iterator> +#include <exception> +#include <cstdlib> + +void f1() +{ + std::exit(0); +} + +int main() +{ + std::set_terminate(f1); + typedef int T; + typedef std::vector<T> C; + C c(1); + assert(c.front() == 0); + c.clear(); + assert(c.front() == 0); + assert(false); +} + +#else + +int main() +{ +} + +#endif |

