Port external-io test to use GTest. Remove Runtime tests directory. Rename RuntimeGTest directory to Runtime. This is the last in a series of patches which ported tests from the old flang/unittests/Runtime test directory to use GTest in a temporary unittest directory under flang/unittests/RuntimeGTest. Now that all the tests in the old directory have been ported to use GTest, the old directory has been removed and the GTest directory has been renamed to flang/unittests/Runtime. Differential Revision: https://reviews.llvm.org/D105315 Reviewed by: Meinersbur, awarzynski
22 lines
786 B
C++
22 lines
786 B
C++
//===-- flang/unittests/RuntimeGTest/CrashHandlerFixture.h ------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
/// Test fixture registers a custom crash handler to ensure death tests fail
|
|
/// with expected message.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef LLVM_FLANG_UNITTESTS_RUNTIMEGTEST_CRASHHANDLERFIXTURE_H
|
|
#define LLVM_FLANG_UNITTESTS_RUNTIMEGTEST_CRASHHANDLERFIXTURE_H
|
|
#include <gtest/gtest.h>
|
|
|
|
struct CrashHandlerFixture : testing::Test {
|
|
void SetUp();
|
|
};
|
|
|
|
#endif
|