2021-01-13 05:57:11 +08:00
|
|
|
//===-- Header selector for libc unittests ----------------------*- C++ -*-===//
|
2020-01-11 05:43:20 +08:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2021-01-13 05:57:11 +08:00
|
|
|
#ifndef LLVM_LIBC_UTILS_UNITTEST_TEST_H
|
|
|
|
#define LLVM_LIBC_UTILS_UNITTEST_TEST_H
|
2020-02-25 06:53:43 +08:00
|
|
|
|
2021-01-13 05:57:11 +08:00
|
|
|
#ifdef LLVM_LIBC_TEST_USE_FUCHSIA
|
|
|
|
#include "FuchsiaTest.h"
|
|
|
|
#else
|
|
|
|
#include "LibcTest.h"
|
|
|
|
#endif
|
2020-01-11 05:43:20 +08:00
|
|
|
|
2021-01-13 05:57:11 +08:00
|
|
|
#endif // LLVM_LIBC_UTILS_UNITTEST_TEST_H
|