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>2016-06-08 11:25:38 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2016-06-08 11:25:38 +0300
commit4a7fee44a4f74328e2a1d28b7ee0349bc84a08bb (patch)
treebff3099a96216e6159ed844b8d88f0f20fecdd49 /test/tests/file_handle_create_close
parent110087d82f9482918a9cb973c5c63757d71aa4f6 (diff)
upd
Diffstat (limited to 'test/tests/file_handle_create_close')
-rw-r--r--test/tests/file_handle_create_close/runner.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tests/file_handle_create_close/runner.cpp b/test/tests/file_handle_create_close/runner.cpp
index 599bea57..17ad7719 100644
--- a/test/tests/file_handle_create_close/runner.cpp
+++ b/test/tests/file_handle_create_close/runner.cpp
@@ -29,7 +29,7 @@ template <class U> inline void file_handle_create_close_creation(U &&f)
>,
// Any additional per-permute parameters not used to invoke the kernel
hooks::filesystem_setup_parameters,
- hooks::filesystem_comparison_inexact_parameters
+ hooks::filesystem_comparison_structure_parameters
>(
{ // Initialiser list of output value expected for the input parameters, plus any hook parameters
{ make_errored_result<void>(ENOENT), { file_handle::creation::open_existing }, { "non-existing" }, { "non-existing" }},
@@ -46,7 +46,7 @@ template <class U> inline void file_handle_create_close_creation(U &&f)
// Any parameters from now on are called before each permutation and the object returned is
// destroyed after each permutation. The callspec is (parameter_permuter<...> *parent, outcome<T> &testret, size_t, pars)
hooks::filesystem_setup("file_handle_create_close"), // Configure this filesystem workspace before the test
- hooks::filesystem_comparison_inexact("file_handle_create_close") // Do an inexact comparison of the filesystem workspace after the test
+ hooks::filesystem_comparison_structure("file_handle_create_close") // Do a structural comparison of the filesystem workspace after the test
));
// clang-format on