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>2018-07-09 20:47:29 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2018-07-09 20:47:29 +0300
commit5021681a63ecb88f8fc583de0affd921b8677ecf (patch)
treea6bf60d6d19f86ac8bbf54d685fa09fd98e1cfd7 /test
parentc2b2bcc9c595b35e4dc456f79994889cf3d00374 (diff)
Fix test regression from project rename.
Diffstat (limited to 'test')
-rw-r--r--test/tests/path_view.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/tests/path_view.cpp b/test/tests/path_view.cpp
index 78ef8b9b..56307985 100644
--- a/test/tests/path_view.cpp
+++ b/test/tests/path_view.cpp
@@ -35,11 +35,11 @@ static inline void TestPathView()
// Globs
BOOST_CHECK(llfio::path_view("niall*").contains_glob());
// Splitting
- constexpr const char p[] = "/mnt/c/Users/ned/Documents/boostish/llfio/programs/build_posix/testdir/0";
+ constexpr const char p[] = "/mnt/c/Users/ned/Documents/boostish/afio/programs/build_posix/testdir/0";
llfio::path_view e(p); // NOLINT
llfio::path_view f(e.filename());
e.remove_filename();
- BOOST_CHECK(e == "/mnt/c/Users/ned/Documents/boostish/llfio/programs/build_posix/testdir");
+ BOOST_CHECK(e == "/mnt/c/Users/ned/Documents/boostish/afio/programs/build_posix/testdir");
BOOST_CHECK(f == "0");
#ifndef _WIN32
// cstr
@@ -59,11 +59,11 @@ static inline void TestPathView()
BOOST_CHECK(llfio::path_view(L"0123456789012345678901234567890123456789012345678901234567890123.deleted").is_llfio_deleted());
BOOST_CHECK(!llfio::path_view("0123456789012345678901234567890123456789g12345678901234567890123.deleted").is_llfio_deleted());
// Splitting
- constexpr const wchar_t p2[] = L"\\mnt\\c\\Users\\ned\\Documents\\boostish\\llfio\\programs\\build_posix\\testdir\\0";
+ constexpr const wchar_t p2[] = L"\\mnt\\c\\Users\\ned\\Documents\\boostish\\afio\\programs\\build_posix\\testdir\\0";
llfio::path_view g(p2);
llfio::path_view h(g.filename());
g.remove_filename();
- BOOST_CHECK(g == "\\mnt\\c\\Users\\ned\\Documents\\boostish\\llfio\\programs\\build_posix\\testdir");
+ BOOST_CHECK(g == "\\mnt\\c\\Users\\ned\\Documents\\boostish\\afio\\programs\\build_posix\\testdir");
BOOST_CHECK(h == "0");
// cstr
llfio::path_view::c_str i(g, false);