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
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
parentc2b2bcc9c595b35e4dc456f79994889cf3d00374 (diff)
Fix test regression from project rename.
-rw-r--r--include/llfio/revision.hpp6
-rw-r--r--test/tests/path_view.cpp8
2 files changed, 7 insertions, 7 deletions
diff --git a/include/llfio/revision.hpp b/include/llfio/revision.hpp
index b93aabef..24b40846 100644
--- a/include/llfio/revision.hpp
+++ b/include/llfio/revision.hpp
@@ -1,4 +1,4 @@
// Note the second line of this file must ALWAYS be the git SHA, third line ALWAYS the git SHA update time
-#define LLFIO_PREVIOUS_COMMIT_REF 7765ae01f069b8893d4548f06d41c265237e741e
-#define LLFIO_PREVIOUS_COMMIT_DATE "2018-07-09 08:43:08 +00:00"
-#define LLFIO_PREVIOUS_COMMIT_UNIQUE 7765ae01
+#define LLFIO_PREVIOUS_COMMIT_REF c2b2bcc9c595b35e4dc456f79994889cf3d00374
+#define LLFIO_PREVIOUS_COMMIT_DATE "2018-07-09 08:59:21 +00:00"
+#define LLFIO_PREVIOUS_COMMIT_UNIQUE c2b2bcc9
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);