1 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 2 // -*- Mode: C++ -*- 3 // 4 // Copyright (C) 2013-2020 Red Hat, Inc. 5 6 #ifndef __TEST_UTILS_H__ 7 #define __TEST_UTILS_H__ 8 9 #include "config.h" 10 #include <string> 11 12 namespace abigail 13 { 14 namespace tests 15 { 16 17 const char* get_src_dir(); 18 const char* get_build_dir(); 19 20 }//end namespace tests 21 }//end namespace abigail 22 #endif //__TEST_UTILS_H__ 23