Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-06-21 20:10:22 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-06-21 20:10:22 +0300
commit19f3d897d143791f40b1cdcf615336373df4617b (patch)
treedbb83ceda0dfba3b1c62bd1720f7e7bcfbde402a /test
parent84205c952cd4a3dee4a0e329b454be4cfe364fdb (diff)
More CI fixes.
Diffstat (limited to 'test')
-rw-r--r--test/tests/traverse.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tests/traverse.cpp b/test/tests/traverse.cpp
index 7551d5f8..a019ff3f 100644
--- a/test/tests/traverse.cpp
+++ b/test/tests/traverse.cpp
@@ -37,9 +37,9 @@ static inline void TestTraverse()
{
using namespace LLFIO_V2_NAMESPACE;
#ifdef _WIN32
- static constexpr path_view to_traverse_path("c:\\");
+ static constexpr path_view to_traverse_path("c:\\windows");
#else
- static constexpr path_view to_traverse_path("/");
+ static constexpr path_view to_traverse_path("/usr");
#endif
auto to_traverse = path_handle::path(to_traverse_path).value();
struct my_traverse_visitor final : algorithm::traverse_visitor