diff options
author | Ladislav Zezula <zezula@volny.cz> | 2020-03-21 13:12:30 +0100 |
---|---|---|
committer | Ladislav Zezula <zezula@volny.cz> | 2020-03-21 13:12:30 +0100 |
commit | 84b1d23457124dede5856f2d6fa4dcbf682a06fe (patch) | |
tree | 5b95f4047ff890a42982334da107655e304355f2 | |
parent | afaace949ce10be558f54fd1a059524ce12cc926 (diff) |
Fixed Linux test paths
-rw-r--r-- | test/StormTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/StormTest.cpp b/test/StormTest.cpp index a56fcd3..6b30629 100644 --- a/test/StormTest.cpp +++ b/test/StormTest.cpp @@ -41,12 +41,12 @@ static const TCHAR szListFileDir[] = { '1', '9', '9', '5', ' ', '-', ' ', 'T', ' #endif
#ifdef PLATFORM_LINUX
-#define WORK_PATH_ROOT "~/StormLib/test"
+#define WORK_PATH_ROOT "/home/ladik/StormLib/test"
static const TCHAR szListFileDir[] = { '1', '9', '9', '5', ' ', '-', ' ', 'T', 'e', 's', 't', ' ', 'M', 'P', 'Q', 's', '\\', 'l', 'i', 's', 't', 'f', 'i', 'l', 'e', 's', '-', (TCHAR)0xe6, (TCHAR)0x96, (TCHAR)0xB0, (TCHAR)0xE5, (TCHAR)0xBB, (TCHAR)0xBA, (TCHAR)0xE6, (TCHAR)0x96, (TCHAR)0x87, (TCHAR)0xE4, (TCHAR)0xBB, (TCHAR)0xB6, (TCHAR)0xE5, (TCHAR)0xA4, (TCHAR)0xB9, 0 };
#endif
#ifdef PLATFORM_MAC
-#define WORK_PATH_ROOT "~/StormLib/test"
+#define WORK_PATH_ROOT "/home/sam/StormLib/test"
static const TCHAR szListFileDir[] = { '1', '9', '9', '5', ' ', '-', ' ', 'T', 'e', 's', 't', ' ', 'M', 'P', 'Q', 's', '\\', 'l', 'i', 's', 't', 'f', 'i', 'l', 'e', 's', '-', (TCHAR)0xe6, (TCHAR)0x96, (TCHAR)0xB0, (TCHAR)0xE5, (TCHAR)0xBB, (TCHAR)0xBA, (TCHAR)0xE6, (TCHAR)0x96, (TCHAR)0x87, (TCHAR)0xE4, (TCHAR)0xBB, (TCHAR)0xB6, (TCHAR)0xE5, (TCHAR)0xA4, (TCHAR)0xB9, 0 };
#endif
|