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-03 11:57:35 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2018-07-03 11:57:35 +0300
commit6efe2493a65540d3f484a8b7f27d5298d49c9da4 (patch)
tree55ff8924a57c370c16eb69ab90b35ff7d723bf78 /test/tests/directory_handle_enumerate
parent53d415a3b69d2680c15ae2c56a9baf9b149ad71d (diff)
Lots more afio => llfio renaming
Diffstat (limited to 'test/tests/directory_handle_enumerate')
-rw-r--r--test/tests/directory_handle_enumerate/kernel_directory_handle_enumerate.cpp.hpp4
-rw-r--r--test/tests/directory_handle_enumerate/runner.cpp14
2 files changed, 9 insertions, 9 deletions
diff --git a/test/tests/directory_handle_enumerate/kernel_directory_handle_enumerate.cpp.hpp b/test/tests/directory_handle_enumerate/kernel_directory_handle_enumerate.cpp.hpp
index fbdcc8ad..b4500928 100644
--- a/test/tests/directory_handle_enumerate/kernel_directory_handle_enumerate.cpp.hpp
+++ b/test/tests/directory_handle_enumerate/kernel_directory_handle_enumerate.cpp.hpp
@@ -26,9 +26,9 @@ Distributed under the Boost Software License, Version 1.0.
namespace directory_handle_enumerate
{
- AFIO_TEST_KERNEL_DECL AFIO_V2_NAMESPACE::result<AFIO_V2_NAMESPACE::directory_handle::enumerate_info> test_kernel_directory_handle_enumerate(AFIO_V2_NAMESPACE::span<AFIO_V2_NAMESPACE::directory_entry> *buffers, AFIO_V2_NAMESPACE::path_view glob, AFIO_V2_NAMESPACE::directory_handle::filter filtering)
+ LLFIO_TEST_KERNEL_DECL LLFIO_V2_NAMESPACE::result<LLFIO_V2_NAMESPACE::directory_handle::enumerate_info> test_kernel_directory_handle_enumerate(LLFIO_V2_NAMESPACE::span<LLFIO_V2_NAMESPACE::directory_entry> *buffers, LLFIO_V2_NAMESPACE::path_view glob, LLFIO_V2_NAMESPACE::directory_handle::filter filtering)
{
- OUTCOME_TRY(h, AFIO_V2_NAMESPACE::directory_handle::directory({}, "."));
+ OUTCOME_TRY(h, LLFIO_V2_NAMESPACE::directory_handle::directory({}, "."));
auto ret = h.enumerate(*buffers, glob, filtering);
h.close().value();
return ret;
diff --git a/test/tests/directory_handle_enumerate/runner.cpp b/test/tests/directory_handle_enumerate/runner.cpp
index 4e28c444..13eb53af 100644
--- a/test/tests/directory_handle_enumerate/runner.cpp
+++ b/test/tests/directory_handle_enumerate/runner.cpp
@@ -27,20 +27,20 @@ Distributed under the Boost Software License, Version 1.0.
template <class U> inline void directory_handle_enumerate_(U &&f)
{
using namespace KERNELTEST_V1_NAMESPACE;
- using AFIO_V2_NAMESPACE::result;
- using AFIO_V2_NAMESPACE::path_view;
- using AFIO_V2_NAMESPACE::directory_entry;
- using AFIO_V2_NAMESPACE::directory_handle;
- using filter = AFIO_V2_NAMESPACE::directory_handle::filter;
+ using LLFIO_V2_NAMESPACE::result;
+ using LLFIO_V2_NAMESPACE::path_view;
+ using LLFIO_V2_NAMESPACE::directory_entry;
+ using LLFIO_V2_NAMESPACE::directory_handle;
+ using filter = LLFIO_V2_NAMESPACE::directory_handle::filter;
static directory_entry _entries[5];
- static AFIO_V2_NAMESPACE::span<directory_entry> entries(_entries);
+ static LLFIO_V2_NAMESPACE::span<directory_entry> entries(_entries);
// clang-format off
static const auto permuter(mt_permute_parameters<
result<void>,
parameters<
- AFIO_V2_NAMESPACE::span<directory_entry> *,
+ LLFIO_V2_NAMESPACE::span<directory_entry> *,
path_view,
filter
>,