From 61c92f38a7b9a5b30149bf5ae0cc106abc0482dc Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 17 May 2012 01:02:36 +0300 Subject: Fix invoking tests. Remove shell script for tests. --- src/test/testmain.cpp | 3 ++- src/utils/paths.cpp | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ src/utils/paths.h | 2 ++ 3 files changed, 54 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/test/testmain.cpp b/src/test/testmain.cpp index f5bdc5711..eb24a2c75 100644 --- a/src/test/testmain.cpp +++ b/src/test/testmain.cpp @@ -29,6 +29,7 @@ #include "utils/gettext.h" #include "utils/mkdir.h" #include "utils/stringutils.h" +#include "utils/paths.h" #include "utils/process.h" #include @@ -43,7 +44,7 @@ TestMain::TestMain() #ifdef WIN32 fileName = "manaplus.exe"; #else - fileName = selfName; + fileName = getSelfName(); #endif log = new Logger; diff --git a/src/utils/paths.cpp b/src/utils/paths.cpp index 04f553ca9..306955cb3 100644 --- a/src/utils/paths.cpp +++ b/src/utils/paths.cpp @@ -75,3 +75,53 @@ std::string &fixDirSeparators(std::string &str) return replaceAll(str, "/", "\\"); } + +std::string removeLast(std::string str) +{ + size_t pos2 = str.rfind("/"); + size_t pos3 = str.rfind("\\"); + if (pos3 != std::string::npos) + { + if (pos2 == std::string::npos || pos3 > pos2) + pos2 = pos3; + } + if (pos2 == std::string::npos) + pos2 = -1; + if (pos2 >= 0) + return str.substr(0, pos2); + else + return str; +} + +#ifdef WIN32 +std::string getSelfName() +{ + // GetModuleFileName(nullptr) + return ""; +} + +#elif defined(__APPLE__) +std::string getSelfName() +{ + return ""; +} + +#elif defined __linux__ || defined __linux +#include + +std::string getSelfName() +{ + char buf[257]; + int sz = readlink("/proc/self/exe", buf, 256); + if (sz > 0 && sz < 256) + { + buf[sz] = 0; + return buf; + } + else + { + return ""; + } +} + +#endif diff --git a/src/utils/paths.h b/src/utils/paths.h index b89671adc..18fa4629e 100644 --- a/src/utils/paths.h +++ b/src/utils/paths.h @@ -31,4 +31,6 @@ bool checkPath(std::string path); std::string &fixDirSeparators(std::string &str); +std::string getSelfName(); + #endif // UTILS_PATHS_H -- cgit v1.2.3-70-g09d2