Replace test_throw.h header with a single test macro

llvm-svn: 283030
This commit is contained in:
Eric Fiselier 2016-10-01 10:34:13 +00:00
parent 2b44936f6d
commit f18891050b
8 changed files with 17 additions and 39 deletions

View File

@ -20,7 +20,6 @@
#include "test_macros.h"
#include "test_iterators.h"
#include "test_throw.h"
struct Counted {
static int count;
@ -43,7 +42,7 @@ struct ThrowsCounted {
explicit ThrowsCounted() {
++constructed;
if (throw_after > 0 && --throw_after == 0) {
test_throw<int>();
TEST_THROW(1);
}
++count;
}

View File

@ -20,7 +20,6 @@
#include "test_macros.h"
#include "test_iterators.h"
#include "test_throw.h"
struct Counted {
static int count;
@ -43,7 +42,7 @@ struct ThrowsCounted {
explicit ThrowsCounted() {
++constructed;
if (throw_after > 0 && --throw_after == 0) {
test_throw<int>();
TEST_THROW(1);
}
++count;
}

View File

@ -20,7 +20,6 @@
#include "test_macros.h"
#include "test_iterators.h"
#include "test_throw.h"
struct Counted {
static int count;
@ -43,7 +42,7 @@ struct ThrowsCounted {
explicit ThrowsCounted() {
++constructed;
if (throw_after > 0 && --throw_after == 0) {
test_throw<int>();
TEST_THROW(1);
}
++count;
}

View File

@ -20,7 +20,6 @@
#include "test_macros.h"
#include "test_iterators.h"
#include "test_throw.h"
struct Counted {
static int count;
@ -42,7 +41,7 @@ struct ThrowsCounted {
explicit ThrowsCounted() {
++constructed;
if (throw_after > 0 && --throw_after == 0) {
test_throw<int>();
TEST_THROW(1);
}
++count;
}

View File

@ -20,7 +20,6 @@
#include "test_macros.h"
#include "test_iterators.h"
#include "test_throw.h"
struct Counted {
static int count;
@ -43,7 +42,7 @@ struct ThrowsCounted {
explicit ThrowsCounted(int&& x) {
++constructed;
if (throw_after > 0 && --throw_after == 0) {
test_throw<int>();
TEST_THROW(1);
}
++count;
x = 0;

View File

@ -20,7 +20,6 @@
#include "test_macros.h"
#include "test_iterators.h"
#include "test_throw.h"
struct Counted {
static int count;
@ -43,7 +42,7 @@ struct ThrowsCounted {
explicit ThrowsCounted(int&& x) {
++constructed;
if (throw_after > 0 && --throw_after == 0) {
test_throw<int>();
TEST_THROW(1);
}
++count;
x = 0;

View File

@ -140,4 +140,15 @@ struct is_same<T, T> { enum {value = 1}; };
static_assert(test_macros_detail::is_same<__VA_ARGS__>::value, \
"Types differ uexpectedly")
#ifndef TEST_HAS_NO_EXCEPTIONS
#define TEST_THROW(...) throw __VA_ARGS__
#else
#if defined(__GNUC__)
#define TEST_THROW(...) __builtin_abort()
#else
#include <stdlib.h>
#define TEST_THROW(...) ::abort()
#endif
#endif
#endif // SUPPORT_TEST_MACROS_HPP

View File

@ -1,27 +0,0 @@
// -*- C++ -*-
//===---------------------------- test_macros.h ---------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
#ifndef SUPPORT_TEST_THROW_H
#define SUPPORT_TEST_THROW_H
#include "test_macros.h"
#include <cstdlib>
template <class Ex>
TEST_NORETURN
inline void test_throw() {
#ifndef TEST_HAS_NO_EXCEPTIONS
throw Ex();
#else
std::abort();
#endif
}
#endif // SUPPORT_TEST_THROW_H