summaryrefslogtreecommitdiff
path: root/unittests/TestingSupport/TestUtilities.h
blob: eaaa453c2c3c2d9aad9f01085bed034f46af2356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//===- TestUtilities.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
//
//===----------------------------------------------------------------------===//

#ifndef LLDB_UNITTESTS_UTILITY_HELPERS_TESTUTILITIES_H
#define LLDB_UNITTESTS_UTILITY_HELPERS_TESTUTILITIES_H

#include "llvm/ADT/Twine.h"
#include <string>

namespace lldb_private {
std::string GetInputFilePath(const llvm::Twine &name);
}

#endif