You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
385 B
23 lines
385 B
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
// -*- Mode: C++ -*-
|
|
//
|
|
// Copyright (C) 2013-2020 Red Hat, Inc.
|
|
|
|
#ifndef __TEST_UTILS_H__
|
|
#define __TEST_UTILS_H__
|
|
|
|
#include "config.h"
|
|
#include <string>
|
|
|
|
namespace abigail
|
|
{
|
|
namespace tests
|
|
{
|
|
|
|
const char* get_src_dir();
|
|
const char* get_build_dir();
|
|
|
|
}//end namespace tests
|
|
}//end namespace abigail
|
|
#endif //__TEST_UTILS_H__
|