Skip to content

Commit

Permalink
CC, Linux: Fix paging_test
Browse files Browse the repository at this point in the history
Used to have "\\" hardcoded as a path separator; fixed this.
  • Loading branch information
jahunter-m committed Aug 15, 2018
1 parent b84e9b2 commit ba3bb95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cc/test/paging_test.h
Expand Up @@ -461,7 +461,7 @@ TEST(CLASS, UpsertRead_Concurrent) {
std::experimental::filesystem::create_directories("logs");

// 8 pages!
FasterKv<Key, Value, disk_t> store{ 262144, 268435456, "logs\\", 0.5 };
FasterKv<Key, Value, disk_t> store{ 262144, 268435456, "logs", 0.5 };

static constexpr size_t kNumRecords = 300000;
static constexpr size_t kNumThreads = 16;
Expand Down Expand Up @@ -977,7 +977,7 @@ TEST(CLASS, Rmw_Concurrent) {
std::experimental::filesystem::create_directories("logs");

// 8 pages!
FasterKv<Key, Value, disk_t> store{ 262144, 268435456, "logs\\", 0.5 };
FasterKv<Key, Value, disk_t> store{ 262144, 268435456, "logs", 0.5 };

// Initial RMW.
std::deque<std::thread> threads{};
Expand Down

0 comments on commit ba3bb95

Please sign in to comment.