aboutsummaryrefslogtreecommitdiff
path: root/tests/load/driver.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-03-05 17:50:40 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-03-05 18:28:57 +0300
commitddcc63b758f7e83a80d0928cb6737deb95f42c8d (patch)
treec20ec8d0a37b0887b3deb647a713e56353759c6a /tests/load/driver.cxx
parent3209cd2c39a3c529cf89acfca5502aa00bda3d81 (diff)
Add .manifest extension to repositories, packages and signature files
Diffstat (limited to 'tests/load/driver.cxx')
-rw-r--r--tests/load/driver.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/load/driver.cxx b/tests/load/driver.cxx
index f16c484..61c10b0 100644
--- a/tests/load/driver.cxx
+++ b/tests/load/driver.cxx
@@ -27,8 +27,8 @@ using namespace odb::core;
using namespace butl;
using namespace brep;
-static const path packages ("packages");
-static const path repositories ("repositories");
+static const path packages ("packages.manifest");
+static const path repositories ("repositories.manifest");
static bool
check_location (shared_ptr<package>& p)
@@ -114,10 +114,10 @@ main (int argc, char* argv[])
if (cp.relative ())
cp.complete ();
- // Update packages file timestamp to enforce loader to update
- // persistent state.
+ // Update the packages.manifest file timestamp to enforce the loader to
+ // update the persistent state.
//
- path p (cp.directory () / path ("1/stable/packages"));
+ path p (cp.directory () / dir_path ("1/stable") / packages);
char const* args[] = {"touch", p.string ().c_str (), nullptr};
assert (process (args).wait ());